Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/xiph/speex.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKai Pastor <dg0yt@darc.de>2022-08-24 21:14:31 +0300
committerTristan Matthews <tmatth@videolan.org>2022-08-24 21:20:29 +0300
commit5b036b2ca5e27004502e67ee20490a16f5e68aa1 (patch)
tree4626814d7a9b0567fbeac534aeb6b27094958012
parent5dceaaf3e23ee7fd17c80cb5f02a838fd6c18e01 (diff)
Fix vla detectionHEADmaster
Signed-off-by: Tristan Matthews <tmatth@videolan.org>
-rw-r--r--configure.ac2
1 files changed, 1 insertions, 1 deletions
diff --git a/configure.ac b/configure.ac
index d94c2fe..b813148 100644
--- a/configure.ac
+++ b/configure.ac
@@ -37,7 +37,7 @@ AC_C_RESTRICT
AC_MSG_CHECKING(for C99 variable-size arrays)
-+AC_COMPILE_IFELSE([AC_LANG_PROGRAM([[]], [[
+AC_COMPILE_IFELSE([AC_LANG_PROGRAM([[]], [[
int foo;
foo = 10;
int array[foo];