diff options
Diffstat (limited to 'math/test-fenvinline.c')
-rw-r--r-- | math/test-fenvinline.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/math/test-fenvinline.c b/math/test-fenvinline.c index 87c9df44b3..b02cefd7f8 100644 --- a/math/test-fenvinline.c +++ b/math/test-fenvinline.c @@ -249,7 +249,7 @@ feenable_test (const char *flag_name, fexcept_t fe_exc) if (excepts != fe_exc) { printf ("Test: fedisableexcept (%s) failed, return should be 0x%x, is 0x%x\n", - flag_name, fe_exc, excepts); + flag_name, (unsigned int)fe_exc, excepts); ++count_errors; } @@ -284,7 +284,7 @@ feenable_test (const char *flag_name, fexcept_t fe_exc) if (excepts != fe_exc) { printf ("Test: fedisableexcept (%s) failed, return should be 0x%x, is 0x%x\n", - flag_name, fe_exc, excepts); + flag_name, (unsigned int)fe_exc, excepts); ++count_errors; } #endif |