From 36f8aa006a860396d15e4101fc7908bbe2714775 Mon Sep 17 00:00:00 2001 From: Marko Kreen Date: Tue, 30 Oct 2012 22:13:33 +0200 Subject: [PATCH] test_endian: fix uint64 check --- test/test_endian.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/test_endian.c b/test/test_endian.c index a16ac3c..a8cc687 100644 --- a/test/test_endian.c +++ b/test/test_endian.c @@ -13,7 +13,7 @@ static void test_bswap(void *p) { int_check(bswap16(0xff01), 0x01ff); int_check(bswap32(0x01020304), 0x04030201); - int_check(bswap64(0x0102030405060708ULL), 0x0807060504030201ULL); + ull_check(bswap64(0x0102030405060708ULL), 0x0807060504030201ULL); end:; } -- 2.39.5