From: Joel Rosdahl Date: Sun, 24 Jul 2011 11:54:58 +0000 (+0200) Subject: test: Call correct function in CHECK_UNS_EQ X-Git-Tag: v3.2~197 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=52459f7b669c1971d0aa365ba2f8d54f2923cb10;p=thirdparty%2Fccache.git test: Call correct function in CHECK_UNS_EQ --- diff --git a/test/framework.h b/test/framework.h index 64e75ab33..ec108c255 100644 --- a/test/framework.h +++ b/test/framework.h @@ -82,7 +82,7 @@ #define CHECK_UNS_EQ(expected, actual) \ do { \ - if (!cct_check_int_eq(__FILE__, __LINE__, #actual, (expected), (actual))) { \ + if (!cct_check_uns_eq(__FILE__, __LINE__, #actual, (expected), (actual))) { \ cct_test_end(); \ cct_suite_end(); \ return _test_counter; \