From: Andreas Jaeger Date: Tue, 8 Feb 2000 16:36:52 +0000 (+0000) Subject: Update. X-Git-Tag: upstream/2.30~26262 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=8308c68b8839d5795206db96e5aab01d8f5e1b97;p=external%2Fglibc.git Update. * sysdeps/unix/sysv/linux/mips/register-dump.h (register_dump): Fix usage of macro ADD_STRING. --- diff --git a/ChangeLog b/ChangeLog index cdcf601..45b638a 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,5 +1,8 @@ 2000-02-08 Andreas Jaeger + * sysdeps/unix/sysv/linux/mips/register-dump.h (register_dump): + Fix usage of macro ADD_STRING. + * sysdeps/unix/sysv/linux/mips/bits/termios.h: Remove members c_ispeed and c_ospeed which are not implemented. diff --git a/sysdeps/unix/sysv/linux/mips/register-dump.h b/sysdeps/unix/sysv/linux/mips/register-dump.h index c48980d..61a4688 100644 --- a/sysdeps/unix/sysv/linux/mips/register-dump.h +++ b/sysdeps/unix/sysv/linux/mips/register-dump.h @@ -73,34 +73,34 @@ register_dump (int fd, struct sigcontext *ctx) for (i = 0; i < 8; i++) { ADD_MEM (regs[i], 8); - ADD_STRING (" ", 1); + ADD_STRING (" "); } ADD_STRING ("\n R8 "); for (i = 8; i < 16; i++) { ADD_MEM (regs[i], 8); - ADD_STRING (" ", 1); + ADD_STRING (" "); } ADD_STRING ("\n R16 "); for (i = 16; i < 24; i++) { ADD_MEM (regs[i], 8); - ADD_STRING (" ", 1); + ADD_STRING (" "); } ADD_STRING ("\n R24 "); for (i = 24; i < 32; i++) { ADD_MEM (regs[i], 8); - ADD_STRING (" ", 1); + ADD_STRING (" "); } ADD_STRING ("\n pc cause status badvaddr lo hi\n "); ADD_MEM (regs[], 8); for (i = 32; i < 38; i++) { ADD_MEM (regs[i], 8); - ADD_STRING (" ", 1); + ADD_STRING (" "); } - ADD_STRING ("\n", 1); + ADD_STRING ("\n"); /* Write the stuff out. */ writev (fd, iov, nr);