Swap around the two last args to the check for expected fegetround(),

so the error message makes sense.
This commit is contained in:
he 2017-07-24 18:13:36 +00:00
parent ed2c7aaa15
commit 4624b40e19
1 changed files with 1 additions and 1 deletions

View File

@ -89,7 +89,7 @@ ATF_TC_BODY(fe_round, tc)
(fegetround() == values[i].round_mode),
"Didn't get the same rounding mode out!\n"
"(index %d) fed in %d rounding mode, got %d out\n",
i, fegetround(), values[i].round_mode);
i, values[i].round_mode, fegetround());
}
}