From: Nick Mathewson Date: Thu, 19 May 2016 20:01:25 +0000 (-0400) Subject: add missing atoi for cosmetic reasons X-Git-Tag: tor-0.2.9.1-alpha~227^2 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=ae7e2b9a7cd95ad04d3d416fd58cc20f8c4f06bd;p=thirdparty%2Ftor.git add missing atoi for cosmetic reasons --- diff --git a/configure.ac b/configure.ac index 8465b43262..f8cad48b17 100644 --- a/configure.ac +++ b/configure.ac @@ -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])],