Warning fixes

git-svn-id: https://swig.svn.sourceforge.net/svnroot/swig/trunk@5605 626c5289-ae23-0410-ae9c-e8d60b6d4f22
This commit is contained in:
William S Fulton 2004-01-07 21:34:12 +00:00
commit 217d63b8a3

View file

@ -14,7 +14,7 @@ Vector operator+(const Vector &a, const Vector &b) {
char *Vector::print() {
static char temp[512];
sprintf(temp,"Vector %x (%g,%g,%g)", this, x,y,z);
sprintf(temp,"Vector %p (%g,%g,%g)", this, x,y,z);
return temp;
}