Update.
authorUlrich Drepper <drepper@redhat.com>
Mon, 16 Aug 1999 06:06:21 +0000 (06:06 +0000)
committerUlrich Drepper <drepper@redhat.com>
Mon, 16 Aug 1999 06:06:21 +0000 (06:06 +0000)
1999-08-16  Andreas Jaeger  <aj@arthur.rhein-neckar.de>

* libio/ioputs.c (_IO_puts): Add missing brace.

ChangeLog
libio/ioputs.c

index 941eab5..b1316b5 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,7 @@
+1999-08-16  Andreas Jaeger  <aj@arthur.rhein-neckar.de>
+
+       * libio/ioputs.c (_IO_puts): Add missing brace.
+
 1999-07-20  Geoff Keating  <geoffk@cygnus.com>
 
        * math/libm-test.c: Tweak deltas for a clean run on ppc.
index 86ae790..0c97def 100644 (file)
@@ -36,7 +36,7 @@ _IO_puts (str)
                            _IO_stdout);
   _IO_flockfile (_IO_stdout);
 
-  if (_IO_stdout->_vtable_offset != 0 || _IO_fwide (_IO_stdout, -1) == -1)
+  if ((_IO_stdout->_vtable_offset != 0 || _IO_fwide (_IO_stdout, -1) == -1)
       && _IO_sputn (_IO_stdout, str, len) == len
       && _IO_putc_unlocked ('\n', _IO_stdout) != EOF)
     result = len + 1;