]> git.ipfire.org Git - thirdparty/valgrind.git/commitdiff
Fixed typo: added missing right parentheses.
authorBart Van Assche <bvanassche@acm.org>
Sun, 21 Dec 2008 16:09:03 +0000 (16:09 +0000)
committerBart Van Assche <bvanassche@acm.org>
Sun, 21 Dec 2008 16:09:03 +0000 (16:09 +0000)
git-svn-id: svn://svn.valgrind.org/valgrind/trunk@8850

configure.in

index ca14cbc964dfbf507e1ef8e0a8c9a0602894a4b9..dd96edd3966f9360bc821853a5ebb289952a5f5a 100644 (file)
@@ -1165,7 +1165,7 @@ AC_TRY_LINK(,
 [
   int variable = 1;
   return (__sync_bool_compare_and_swap(&variable, 1, 2)
-         && __sync_add_and_fetch(&variable, 1) ? 1 : 0
+         && __sync_add_and_fetch(&variable, 1) ? 1 : 0)
 ],
 [
   AC_MSG_RESULT([yes])