diff options
author | Arnold D. Robbins <arnold@skeeve.com> | 2011-12-28 18:12:21 +0200 |
---|---|---|
committer | Arnold D. Robbins <arnold@skeeve.com> | 2011-12-28 18:12:21 +0200 |
commit | 23d37c1740baeaebefd8310c53b232904c1e1f77 (patch) | |
tree | 6e928ffdd4902fd844affbdf21c6ef3227017075 /str_array.c | |
parent | 73d24cae0db6cc817db209e5e1ea93b0733d1cca (diff) | |
download | egawk-23d37c1740baeaebefd8310c53b232904c1e1f77.tar.gz egawk-23d37c1740baeaebefd8310c53b232904c1e1f77.tar.bz2 egawk-23d37c1740baeaebefd8310c53b232904c1e1f77.zip |
Fix compiler warnings on printf calls.
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 be431e5d..0b17796c 100644 --- a/str_array.c +++ b/str_array.c @@ -446,7 +446,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: %lu\n", STR_CHAIN_MAX); + fprintf(output_fp, "STR_CHAIN_MAX: %lu\n", (unsigned long) STR_CHAIN_MAX); indent(indent_level); fprintf(output_fp, "array_size: %lu\n", (unsigned long) symbol->array_size); indent(indent_level); |