aboutsummaryrefslogtreecommitdiffstats
path: root/str_array.c
diff options
context:
space:
mode:
authorArnold D. Robbins <arnold@skeeve.com>2011-12-28 18:12:21 +0200
committerArnold D. Robbins <arnold@skeeve.com>2011-12-28 18:12:21 +0200
commit23d37c1740baeaebefd8310c53b232904c1e1f77 (patch)
tree6e928ffdd4902fd844affbdf21c6ef3227017075 /str_array.c
parent73d24cae0db6cc817db209e5e1ea93b0733d1cca (diff)
downloadegawk-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.c2
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);