Skip to content

Commit

Permalink
configure: do not allow variable length arrays
Browse files Browse the repository at this point in the history
There pointless and marked as optional since C11.

Signed-off-by: Christian Brauner <christian.brauner@ubuntu.com>
  • Loading branch information
Christian Brauner committed Nov 25, 2016
1 parent 8d3786c commit d8f2dda
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion configure.ac
Expand Up @@ -663,7 +663,7 @@ LXC_CHECK_TLS
if test "x$GCC" = "xyes"; then
CFLAGS="$CFLAGS -Wall"
if test "x$enable_werror" = "xyes"; then
CFLAGS="$CFLAGS -Werror"
CFLAGS="$CFLAGS -Werror -Werror=vla"
fi
fi

Expand Down

0 comments on commit d8f2dda

Please sign in to comment.