]> granicus.if.org Git - transmission/commitdiff
Pass `(u)intmax_t` instead of `(u)int64_t` to `check_(u)int_eq` (libtest)
authorMike Gelfand <mikedld@mikedld.com>
Mon, 29 May 2017 16:51:25 +0000 (19:51 +0300)
committerMike Gelfand <mikedld@mikedld.com>
Tue, 30 May 2017 14:44:47 +0000 (17:44 +0300)
libtransmission/libtransmission-test.c
libtransmission/libtransmission-test.h

index 7e71fe228dfdc8eb8d518c65636050fe494e399c..592b6554b4f73fcf5985e7329056a4167db09905 100644 (file)
@@ -82,7 +82,7 @@ bool check_str_eq_impl(char const* file, int line, char const* expected, char co
     return pass;
 }
 
-bool check_int_eq_impl(char const* file, int line, int64_t expected, int64_t actual)
+bool check_int_eq_impl(char const* file, int line, intmax_t expected, intmax_t actual)
 {
     bool const pass = expected == actual;
 
@@ -94,14 +94,14 @@ bool check_int_eq_impl(char const* file, int line, int64_t expected, int64_t act
         }
         else
         {
-            fprintf(stderr, "FAIL %s:%d, expected \"%" PRId64 "\", got \"%" PRId64 "\"\n", file, line, expected, actual);
+            fprintf(stderr, "FAIL %s:%d, expected \"%jd\", got \"%jd\"\n", file, line, expected, actual);
         }
     }
 
     return pass;
 }
 
-bool check_uint_eq_impl(char const* file, int line, uint64_t expected, uint64_t actual)
+bool check_uint_eq_impl(char const* file, int line, uintmax_t expected, uintmax_t actual)
 {
     bool const pass = expected == actual;
 
@@ -113,7 +113,7 @@ bool check_uint_eq_impl(char const* file, int line, uint64_t expected, uint64_t
         }
         else
         {
-            fprintf(stderr, "FAIL %s:%d, expected \"%" PRIu64 "\", got \"%" PRIu64 "\"\n", file, line, expected, actual);
+            fprintf(stderr, "FAIL %s:%d, expected \"%ju\", got \"%ju\"\n", file, line, expected, actual);
         }
     }
 
index 41b4777a72dd177e6da91d515e990cff33860259..8be526c34fed5658705b3856b4ace16bdc1973e9 100644 (file)
@@ -23,8 +23,8 @@ extern bool verbose;
 bool should_print(bool pass);
 
 bool check_condition_impl(char const* file, int line, bool condition);
-bool check_int_eq_impl(char const* file, int line, int64_t expected, int64_t actual);
-bool check_uint_eq_impl(char const* file, int line, uint64_t expected, uint64_t actual);
+bool check_int_eq_impl(char const* file, int line, intmax_t expected, intmax_t actual);
+bool check_uint_eq_impl(char const* file, int line, uintmax_t expected, uintmax_t actual);
 bool check_ptr_eq_impl(char const* file, int line, void const* expected, void const* actual);
 bool check_str_eq_impl(char const* file, int line, char const* expected, char const* actual);