summaryrefslogtreecommitdiffstats
path: root/src/datatype.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/datatype.c')
-rw-r--r--src/datatype.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/datatype.c b/src/datatype.c
index f5f4f3ad..1518606a 100644
--- a/src/datatype.c
+++ b/src/datatype.c
@@ -205,7 +205,7 @@ void symbol_table_print(const struct symbol_table *tbl,
switch_byteorder(&value, len);
if (tbl->base == BASE_DECIMAL)
- printf("\t%-30s\t%20lu\n", s->identifier, value);
+ printf("\t%-30s\t%20"PRIu64"\n", s->identifier, value);
else
printf("\t%-30s\t0x%.*" PRIx64 "\n",
s->identifier, 2 * len, value);