From 804d3e0f68b6d6e1f6eb4c47499e547d92c4f334 Mon Sep 17 00:00:00 2001 From: Adam Dickmeiss Date: Thu, 3 Dec 2009 09:34:17 +0100 Subject: [PATCH] Use ODR_INT_PRINTF to print Integer --- src/odr_int.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/odr_int.c b/src/odr_int.c index 606f59b..5e3ed97 100644 --- a/src/odr_int.c +++ b/src/odr_int.c @@ -35,7 +35,7 @@ int odr_integer(ODR o, Odr_int **p, int opt, const char *name) if (o->direction == ODR_PRINT) { odr_prname(o, name); - odr_printf(o, "%d\n", **p); + odr_printf(o, ODR_INT_PRINTF "\n", **p); return 1; } if (cons) -- 1.7.10.4