From a2f4c46ba3d4cd3de6be372316abc0e0e6518d4c Mon Sep 17 00:00:00 2001 From: "Arnold D. Robbins" Date: Tue, 25 Oct 2011 21:58:39 +0200 Subject: Fix warning messages after merge with gawk_performance. --- cint_array.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'cint_array.c') diff --git a/cint_array.c b/cint_array.c index 72cd7370..bdda1117 100644 --- a/cint_array.c +++ b/cint_array.c @@ -1011,7 +1011,7 @@ tree_print(NODE *tree, size_t bi, int indent_level) hsize = tree->array_size; if ((tree->flags & HALFHAT) != 0) hsize /= 2; - fprintf(output_fp, "%4d:%s[%4lu:%-4lu]\n", bi, + fprintf(output_fp, "%4u:%s[%4lu:%-4lu]\n", bi, (tree->flags & HALFHAT) ? "HH" : "H", (unsigned long) hsize, (unsigned long) tree->table_size); @@ -1225,7 +1225,7 @@ static void leaf_print(NODE *array, size_t bi, int indent_level) { indent(indent_level); - fprintf(output_fp, "%4d:L[%4lu:%-4lu]\n", bi, + fprintf(output_fp, "%4u:L[%4lu:%-4lu]\n", bi, (unsigned long) array->array_size, (unsigned long) array->table_size); } -- cgit v1.2.1