summaryrefslogtreecommitdiffhomepage
path: root/cmap_test.c
diff options
context:
space:
mode:
Diffstat (limited to 'cmap_test.c')
-rw-r--r--cmap_test.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/cmap_test.c b/cmap_test.c
index 7c5e1fad..18d8bdaa 100644
--- a/cmap_test.c
+++ b/cmap_test.c
@@ -83,7 +83,7 @@ int main()
num = cmap_si_get(words, "funny");
if (num) printf("%s: %d\n", num->key.str, num->value);
- printf("words size: %d, capacity %d\n", cmap_size(words), cmap_capacity(words));
+ printf("words size: %zd, capacity %zd\n", cmap_size(words), cmap_capacity(words));
cmap_si_clear(&words);
CVector_s strv = cvector_initializer;