gdb/gdbserver/
authorYao Qi <yao@codesourcery.com>
Mon, 26 Nov 2012 13:30:07 +0000 (13:30 +0000)
committerYao Qi <yao@codesourcery.com>
Mon, 26 Nov 2012 13:30:07 +0000 (13:30 +0000)
2012-11-26  Yao Qi  <yao@codesourcery.com>

* configure.ac (build_warnings): Append '-Wempty-body'.
* configure: Regenerated.
* linux-low.c (linux_create_inferior): Use braces for empty 'if'
body.

gdb/gdbserver/ChangeLog
gdb/gdbserver/configure
gdb/gdbserver/configure.ac
gdb/gdbserver/linux-low.c

index 7025e58..efebfb1 100644 (file)
@@ -1,3 +1,10 @@
+2012-11-26  Yao Qi  <yao@codesourcery.com>
+
+       * configure.ac (build_warnings): Append '-Wempty-body'.
+       * configure: Regenerated.
+       * linux-low.c (linux_create_inferior): Use braces for empty 'if'
+       body.
+
 2012-11-15  Pierre Muller  <muller@sourceware.org>
 
        * configure.ac (AC_CHECK_HEADERS): Add wait.h header.
index b451a22..02d45da 100755 (executable)
@@ -4569,7 +4569,7 @@ if test "${ERROR_ON_WARNING}" = yes ; then
 fi
 
 build_warnings="-Wall -Wdeclaration-after-statement -Wpointer-arith \
--Wformat-nonliteral -Wno-char-subscripts"
+-Wformat-nonliteral -Wno-char-subscripts -Wempty-body"
 
 WARN_CFLAGS=""
 if test "x$GCC" = xyes
index 46f5dc0..36ed82f 100644 (file)
@@ -126,7 +126,7 @@ if test "${ERROR_ON_WARNING}" = yes ; then
 fi
 
 build_warnings="-Wall -Wdeclaration-after-statement -Wpointer-arith \
--Wformat-nonliteral -Wno-char-subscripts"
+-Wformat-nonliteral -Wno-char-subscripts -Wempty-body"
 
 WARN_CFLAGS=""
 if test "x$GCC" = xyes
index 2de46d2..c697f6b 100644 (file)
@@ -659,7 +659,9 @@ linux_create_inferior (char *program, char **allargs)
          dup2 (2, 1);
          if (write (2, "stdin/stdout redirected\n",
                     sizeof ("stdin/stdout redirected\n") - 1) < 0)
-           /* Errors ignored.  */;
+           {
+             /* Errors ignored.  */;
+           }
        }
 
       execv (program, allargs);