diff options
author | Arnold D. Robbins <arnold@skeeve.com> | 2011-10-25 22:08:53 +0200 |
---|---|---|
committer | Arnold D. Robbins <arnold@skeeve.com> | 2011-10-25 22:08:53 +0200 |
commit | 44cd8b0b374419f77febc504b0053b87c894810c (patch) | |
tree | e0016bafbc35ee5df461aed0cc09640ad9d0257c /cint_array.c | |
parent | a2f4c46ba3d4cd3de6be372316abc0e0e6518d4c (diff) | |
parent | a3d40d091d31ec54b85240209afddb0212de085c (diff) | |
download | egawk-44cd8b0b374419f77febc504b0053b87c894810c.tar.gz egawk-44cd8b0b374419f77febc504b0053b87c894810c.tar.bz2 egawk-44cd8b0b374419f77febc504b0053b87c894810c.zip |
Merge branch 'gawk-4.0-stable'
Diffstat (limited to 'cint_array.c')
-rw-r--r-- | cint_array.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/cint_array.c b/cint_array.c index bdda1117..3d812cbb 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, "%4u:%s[%4lu:%-4lu]\n", bi, + fprintf(output_fp, "%4lu:%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, "%4u:L[%4lu:%-4lu]\n", bi, + fprintf(output_fp, "%4lu:L[%4lu:%-4lu]\n", bi, (unsigned long) array->array_size, (unsigned long) array->table_size); } |