summaryrefslogtreecommitdiffhomepage
path: root/cmap_test.c
diff options
context:
space:
mode:
authorTyge Løvset <[email protected]>2020-03-05 10:22:42 +0100
committerGitHub <[email protected]>2020-03-05 10:22:42 +0100
commit0e686db1da455bb73e07cae52ca50da240f07d76 (patch)
tree8a9e5dd4772cf61d4b7ba18dee467aa95c3043d9 /cmap_test.c
parent197e664c1d49b39b00578c9908467f674ed16098 (diff)
downloadSTC-modified-0e686db1da455bb73e07cae52ca50da240f07d76.tar.gz
STC-modified-0e686db1da455bb73e07cae52ca50da240f07d76.zip
Add files via upload
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;