diff options
author | Arnold D. Robbins <arnold@skeeve.com> | 2020-07-10 11:11:32 +0300 |
---|---|---|
committer | Arnold D. Robbins <arnold@skeeve.com> | 2020-07-10 11:11:32 +0300 |
commit | 148e858362060f90f05af79189550fe2e0e42f31 (patch) | |
tree | 56e0d2c5a41a8c46792b5b319f3dd1d9254aa02c /cint_array.c | |
parent | 244853b8443ecba49e84f2f527ceb386b8628e9a (diff) | |
download | egawk-148e858362060f90f05af79189550fe2e0e42f31.tar.gz egawk-148e858362060f90f05af79189550fe2e0e42f31.tar.bz2 egawk-148e858362060f90f05af79189550fe2e0e42f31.zip |
Fix some printf formatting issues.
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 dd35ac84..b77b0014 100644 --- a/cint_array.c +++ b/cint_array.c @@ -527,8 +527,8 @@ cint_dump(NODE *symbol, NODE *ndump) indent(indent_level); fprintf(output_fp, "THRESHOLD: %ld\n", THRESHOLD); indent(indent_level); - fprintf(output_fp, "table_size: %ld (total), %ld (cint), %ld (int + str)\n", - symbol->table_size, cint_size, xsize); + fprintf(output_fp, "table_size: %lu (total), %ld (cint), %ld (int + str)\n", + (unsigned long) symbol->table_size, cint_size, xsize); indent(indent_level); fprintf(output_fp, "array_capacity: %lu\n", (unsigned long) symbol->array_capacity); indent(indent_level); |