aboutsummaryrefslogtreecommitdiffstats
path: root/cint_array.c
diff options
context:
space:
mode:
authorArnold D. Robbins <arnold@skeeve.com>2020-07-12 21:06:48 +0300
committerArnold D. Robbins <arnold@skeeve.com>2020-07-12 21:06:48 +0300
commit6023694f7921a228142427ff99fffd3e72e74889 (patch)
tree489479518bd619587326686beeac2369de7d88c5 /cint_array.c
parentfafefc27c6f2fe4759156f2c1c56a35c79e876e0 (diff)
parentdd9a8ec89c51dba47e63640a9705017399ec32d0 (diff)
downloadegawk-6023694f7921a228142427ff99fffd3e72e74889.tar.gz
egawk-6023694f7921a228142427ff99fffd3e72e74889.tar.bz2
egawk-6023694f7921a228142427ff99fffd3e72e74889.zip
Merge branch 'gawk-5.1-stable'
Diffstat (limited to 'cint_array.c')
-rw-r--r--cint_array.c4
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);