diff options
author | Rafael G. Martins <rafael@rafaelmartins.eng.br> | 2018-03-20 19:19:56 +0100 |
---|---|---|
committer | Rafael G. Martins <rafael@rafaelmartins.eng.br> | 2018-03-20 19:19:56 +0100 |
commit | c278e2da0cf9aee161e23771125629bdfe8d5d89 (patch) | |
tree | d133edccf32c7a260c534e22325ce671b5023421 /tests/common/check_utils.c | |
parent | 93fc79a5b2826bcddd617e5180d5513dc3cdc67c (diff) | |
download | blogc-c278e2da0cf9aee161e23771125629bdfe8d5d89.tar.gz blogc-c278e2da0cf9aee161e23771125629bdfe8d5d89.tar.bz2 blogc-c278e2da0cf9aee161e23771125629bdfe8d5d89.zip |
blogc: common: replace unsigned int with size_t
Diffstat (limited to 'tests/common/check_utils.c')
-rw-r--r-- | tests/common/check_utils.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/common/check_utils.c b/tests/common/check_utils.c index dc1eadd..12ef921 100644 --- a/tests/common/check_utils.c +++ b/tests/common/check_utils.c @@ -906,7 +906,7 @@ test_trie_size(void **state) } -static unsigned int counter; +static size_t counter; static char *expected_keys[] = {"chu", "copa", "bola", "bote", "bo", "b", "test", "testa"}; static char *expected_datas[] = {"nda", "bu", "guda", "aba", "haha", "c", "asd", "lol"}; |