maint: space changes

* configure.ac, src/complain.c: space changes.
This commit is contained in:
Akim Demaille
2012-05-25 14:36:32 +02:00
parent c0beb08772
commit aed41cf9a0
2 changed files with 7 additions and 5 deletions

View File

@@ -73,6 +73,7 @@ if test "$enable_gcc_warnings" = yes; then
warn_c='-Wbad-function-cast -Wmissing-declarations -Wmissing-prototypes warn_c='-Wbad-function-cast -Wmissing-declarations -Wmissing-prototypes
-Wshadow -Wstrict-prototypes' -Wshadow -Wstrict-prototypes'
warn_cxx='-Wnoexcept' warn_cxx='-Wnoexcept'
AC_LANG_PUSH([C]) AC_LANG_PUSH([C])
for i in $warn_common $warn_c; for i in $warn_common $warn_c;
do do
@@ -89,7 +90,7 @@ if test "$enable_gcc_warnings" = yes; then
do do
gl_WARN_ADD([$i], [WARN_CXXFLAGS]) gl_WARN_ADD([$i], [WARN_CXXFLAGS])
done done
gl_WARN_ADD([ -Wzero-as-null-pointer-constant], [WARN_CXXFLAGS], gl_WARN_ADD([-Wzero-as-null-pointer-constant], [WARN_CXXFLAGS],
[AC_LANG_PROGRAM([], [nullptr])]) [AC_LANG_PROGRAM([], [nullptr])])
gl_WARN_ADD([-Werror], [WERROR_CXXFLAGS]) gl_WARN_ADD([-Werror], [WERROR_CXXFLAGS])
# Warnings for the test suite only. # Warnings for the test suite only.

View File

@@ -74,10 +74,11 @@ error_message (location *loc,
vfprintf (stderr, message, args); vfprintf (stderr, message, args);
{ {
size_t l = strlen (message); size_t l = strlen (message);
if (l < 2 || message[l-2] != ':' || message[l-1] != ' ') { if (l < 2 || message[l-2] != ':' || message[l-1] != ' ')
putc ('\n', stderr); {
fflush (stderr); putc ('\n', stderr);
} fflush (stderr);
}
} }
} }