summaryrefslogtreecommitdiff
path: root/aclocal.m4
diff options
context:
space:
mode:
authorGuy Harris <guy@alum.mit.edu>2011-02-01 15:04:00 -0800
committerGuy Harris <guy@alum.mit.edu>2011-02-01 15:04:00 -0800
commitf663403419bac10194b36697fab5a94449d20956 (patch)
tree633ccfeb0bf7e983ddbaf6f9041f415cc573ed90 /aclocal.m4
parent6d9c7f9ae0dd9614b17d56bd50edbca2a7284d02 (diff)
downloadtcpdump-f663403419bac10194b36697fab5a94449d20956.tar.gz
And another quoting of AC_LANG_SOURCE.
Diffstat (limited to 'aclocal.m4')
-rw-r--r--aclocal.m44
1 files changed, 2 insertions, 2 deletions
diff --git a/aclocal.m4 b/aclocal.m4
index 679921a8..968da9c5 100644
--- a/aclocal.m4
+++ b/aclocal.m4
@@ -1149,7 +1149,7 @@ dnl
AC_DEFUN(AC_C___ATTRIBUTE___FORMAT_FUNCTION_POINTER, [
AC_MSG_CHECKING([whether __attribute__((format)) can be applied to function pointers])
AC_CACHE_VAL(ac_cv___attribute___format_function_pointer, [
-AC_COMPILE_IFELSE(
+AC_COMPILE_IFELSE([
AC_LANG_SOURCE([[
#include <stdlib.h>
@@ -1161,7 +1161,7 @@ main(int argc, char **argv)
{
(*foo)("%s", "test");
}
- ]]),
+ ]])],
ac_cv___attribute___format_function_pointer=yes,
ac_cv___attribute___format_function_pointer=no)])
if test "$ac_cv___attribute___format_function_pointer" = "yes"; then