summaryrefslogtreecommitdiff
path: root/Examples/xml
diff options
context:
space:
mode:
authorWilliam S Fulton <wsf@fultondesigns.co.uk>2007-10-29 22:28:55 +0000
committerWilliam S Fulton <wsf@fultondesigns.co.uk>2007-10-29 22:28:55 +0000
commita66071a8c79f0db5f95cb2f1c96f15930fa96c32 (patch)
tree617a7a24de446cb9d91dcf09a028414819adcbf7 /Examples/xml
parentf2f29c9ba50d8f05e5c1cf17b27cd86fc87015ed (diff)
downloadswig-a66071a8c79f0db5f95cb2f1c96f15930fa96c32.tar.gz
64 bit portability fixes
git-svn-id: https://swig.svn.sourceforge.net/svnroot/swig/trunk@10072 626c5289-ae23-0410-ae9c-e8d60b6d4f22
Diffstat (limited to 'Examples/xml')
-rw-r--r--Examples/xml/example_inl.i2
1 files changed, 1 insertions, 1 deletions
diff --git a/Examples/xml/example_inl.i b/Examples/xml/example_inl.i
index 83c1f9cd6..39e4905d5 100644
--- a/Examples/xml/example_inl.i
+++ b/Examples/xml/example_inl.i
@@ -24,7 +24,7 @@ Vector *new_Vector(double x, double y, double z) {
}
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);
}
%}