diff options
author | Roland McGrath <roland@hack.frob.com> | 2011-06-10 12:45:09 -0700 |
---|---|---|
committer | Roland McGrath <roland@hack.frob.com> | 2011-06-10 22:44:20 -0700 |
commit | 5615eaf26469f20c2d8c3be5770e12564a1edfff (patch) | |
tree | cf9eb7a5797cd7c9dd4680b0463859dcd8376328 /misc | |
parent | b68e08db76547937ea6e1902e87a5ea98c906f0c (diff) | |
download | glibc-5615eaf26469f20c2d8c3be5770e12564a1edfff.tar.gz glibc-5615eaf26469f20c2d8c3be5770e12564a1edfff.tar.xz glibc-5615eaf26469f20c2d8c3be5770e12564a1edfff.zip |
Quash some new warnings from GCC 4.6.
Diffstat (limited to 'misc')
-rw-r--r-- | misc/syslog.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/misc/syslog.c b/misc/syslog.c index 90cd3bfa14..7156b4f955 100644 --- a/misc/syslog.c +++ b/misc/syslog.c @@ -141,7 +141,7 @@ __vsyslog_chk(int pri, int flag, const char *fmt, va_list ap) FILE *f; char *buf = 0; size_t bufsize = 0; - size_t prioff, msgoff; + size_t msgoff; #ifndef NO_SIGPIPE struct sigaction action, oldaction; int sigpipe; @@ -192,7 +192,7 @@ __vsyslog_chk(int pri, int flag, const char *fmt, va_list ap) else { __fsetlocking (f, FSETLOCKING_BYCALLER); - prioff = fprintf (f, "<%d>", pri); + fprintf (f, "<%d>", pri); (void) time (&now); f->_IO_write_ptr += __strftime_l (f->_IO_write_ptr, f->_IO_write_end |