This is the mail archive of the libc-alpha@sources.redhat.com mailing list for the glibc project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

libio/putwc_u.c uses _IO_putc_unlocked?


Hi,

shouldn't putwc_u.c use _IO_putwc_unlocked, instead of
_IO_putc_unlocked - just like getwc_u.c uses _IO_getwc_unlocked
instead of _IO_getc_unlocked?

--- putwc_u.c.orig	2003-02-05 16:04:28.000000000 +0100
+++ putwc_u.c	2003-02-05 16:04:42.000000000 +0100
@@ -25,6 +25,6 @@ putwc_unlocked (wc, fp)
      _IO_FILE *fp;
 {
   CHECK_FILE (fp, WEOF);
-  return _IO_putc_unlocked (wc, fp);
+  return _IO_putwc_unlocked (wc, fp);
 }
 libc_hidden_def (putwc_unlocked)

Thanks,
		moritz
-- 
moritz@duesseldorf.ccc.de - http://duesseldorf.ccc.de/~moritz/
GPG fingerprint = 3A14 3923 15BE FD57 FC06  B501 0841 2D7B 6F98 4199


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]