Skip to content
Snippets Groups Projects
Commit ae7e2b9a authored by Nick Mathewson's avatar Nick Mathewson :game_die:
Browse files

add missing atoi for cosmetic reasons

parent 6d6c8287
No related branches found
No related tags found
No related merge requests found
......@@ -812,7 +812,7 @@ if test "$have_clang" = "yes"; then
int main(int argc, char **argv)
{
int64_t x = ((int64_t)atoi(argv[1])) * (int64_t)atoi(argv[2])
* (int64_t)argv[3];
* (int64_t)atoi(argv[3]);
return x == 9;
} ]])],
[ftrapv_can_link=yes; AC_MSG_RESULT([yes])],
......@@ -831,7 +831,7 @@ if test "$have_clang" = "yes"; then
int main(int argc, char **argv)
{
int64_t x = ((int64_t)atoi(argv[1])) * (int64_t)atoi(argv[2])
* (int64_t)argv[3];
* (int64_t)atoi(argv[3]);
return x == 9;
} ]])],
[mulodi_fixes_ftrapv=yes; AC_MSG_RESULT([yes])],
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment