Meta/Make: drop -std=c99 that was added by mistake

This commit is contained in:
Junio C Hamano
2015-09-25 14:03:07 -07:00
parent 49a1e5ee48
commit 364297f9b4

2
Make
View File

@@ -106,7 +106,7 @@ fi
case "$NO_PEDANTIC" in
?*) ;;
'')
PEDANT="-Werror -Wold-style-definition -std=c99 $PEDANT"
PEDANT="-Werror -Wold-style-definition $PEDANT"
PEDANT="-Wpointer-arith -Woverflow -Wunused $PEDANT"
PEDANT="-Wold-style-declaration -Wstrict-prototypes $PEDANT"
;;