diff options
author | Marko Mäkelä <marko.makela@mariadb.com> | 2020-09-24 16:36:23 +0300 |
---|---|---|
committer | Marko Mäkelä <marko.makela@mariadb.com> | 2020-09-24 16:36:23 +0300 |
commit | 3b72b35a776b473c15df5afa5846b859797d9473 (patch) | |
tree | 077ef6123bac49120c6867ad57946975b04e6ffb /unittest | |
parent | 6ce0a6f9ad77e7934e27db1b73d6d98064352928 (diff) | |
parent | 1adb5378060fe3b00070c537c042acef641d4f6f (diff) | |
download | mariadb-git-3b72b35a776b473c15df5afa5846b859797d9473.tar.gz |
Merge 10.5 into 10.6
Diffstat (limited to 'unittest')
-rw-r--r-- | unittest/mysys/crc32-t.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/unittest/mysys/crc32-t.c b/unittest/mysys/crc32-t.c index c43be2cd586..9834d21769b 100644 --- a/unittest/mysys/crc32-t.c +++ b/unittest/mysys/crc32-t.c @@ -60,8 +60,8 @@ int main(int argc __attribute__((unused)),char *argv[]) DO_TEST_CRC32C(1,"", 1); DO_TEST_CRC32C(0, "12345", 416359221); DO_TEST_CRC32C(1, "12345", 549473433); - DO_TEST_CRC32C(0, "1234567890123456789", 2366987449); - DO_TEST_CRC32C(0, LONG_STR, 3009234172); + DO_TEST_CRC32C(0, "1234567890123456789", 2366987449U); + DO_TEST_CRC32C(0, LONG_STR, 3009234172U); ok(0 == my_crc32c(0, NULL, 0), "crc32c data = NULL, length = 0"); my_end(0); |