]> git.ipfire.org Git - thirdparty/valgrind.git/commitdiff
Correct variable name.
authorTom Hughes <tom@compton.nu>
Wed, 12 Oct 2005 11:30:43 +0000 (11:30 +0000)
committerTom Hughes <tom@compton.nu>
Wed, 12 Oct 2005 11:30:43 +0000 (11:30 +0000)
git-svn-id: svn://svn.valgrind.org/valgrind/trunk@4910

configure.in

index 5faac3402ce280bfdde715dad051eed3e44cb07f..9e802bf5154dac050db8f8a08a4fba9e080f0ecb 100644 (file)
@@ -428,15 +428,15 @@ AC_TRY_COMPILE(, [
 int main () { return 0 ; }
 ],
 [
-no_pointer_sign=yes
+declaration_after_statement=yes
 AC_MSG_RESULT([yes])
 ], [
-no_pointer_sign=no
+declaration_after_statement=no
 AC_MSG_RESULT([no])
 ])
 CFLAGS=$safe_CFLAGS
 
-if test x$no_pointer_sign = xyes; then
+if test x$declaration_after_statement = xyes; then
   CFLAGS="$CFLAGS -Wdeclaration-after-statement"
 fi