diff options
author | Arnold D. Robbins <arnold@skeeve.com> | 2011-10-25 21:58:39 +0200 |
---|---|---|
committer | Arnold D. Robbins <arnold@skeeve.com> | 2011-10-25 21:58:39 +0200 |
commit | a2f4c46ba3d4cd3de6be372316abc0e0e6518d4c (patch) | |
tree | c45adb075a1f582ea50593facde48e2a835ae429 /str_array.c | |
parent | 1bba94521445126120cecd41f7ea29a2810a5eeb (diff) | |
download | gawk-a2f4c46ba3d4cd3de6be372316abc0e0e6518d4c.tar.gz |
Fix warning messages after merge with gawk_performance.
Diffstat (limited to 'str_array.c')
-rw-r--r-- | str_array.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/str_array.c b/str_array.c index 330280a6..f7f35ef3 100644 --- a/str_array.c +++ b/str_array.c @@ -443,7 +443,7 @@ str_dump(NODE *symbol, NODE *ndump) fprintf(output_fp, "flags: %s\n", flags2str(symbol->flags)); } indent(indent_level); - fprintf(output_fp, "STR_CHAIN_MAX: %d\n", STR_CHAIN_MAX); + fprintf(output_fp, "STR_CHAIN_MAX: %u\n", STR_CHAIN_MAX); indent(indent_level); fprintf(output_fp, "array_size: %lu\n", (unsigned long) symbol->array_size); indent(indent_level); |