summaryrefslogtreecommitdiff
path: root/Examples/ruby
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/ruby
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/ruby')
-rw-r--r--Examples/ruby/value/example.i2
1 files changed, 1 insertions, 1 deletions
diff --git a/Examples/ruby/value/example.i b/Examples/ruby/value/example.i
index 1fad8b161..98fd60ed5 100644
--- a/Examples/ruby/value/example.i
+++ b/Examples/ruby/value/example.i
@@ -26,7 +26,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);
}
%}