64 bit portability fixes

git-svn-id: https://swig.svn.sourceforge.net/svnroot/swig/trunk@10072 626c5289-ae23-0410-ae9c-e8d60b6d4f22
This commit is contained in:
William S Fulton 2007-10-29 22:28:55 +00:00
commit a66071a8c7
5 changed files with 5 additions and 5 deletions

View file

@ -11,7 +11,7 @@
%inline %{
void vector_print(Vector *v) {
printf("Vector %x = (%g, %g, %g)\n", v, v->x, v->y, v->z);
printf("Vector %p = (%g, %g, %g)\n", v, v->x, v->y, v->z);
}
%}