* libc/stdio/fseek.c (fseek): Fix braces.
@ -1,3 +1,7 @@
2002-06-24 WATANABE Hirofumi <eban@os.rim.or.jp>
2002-06-21 Corinna Vinschen <corinna@vinschen.de>
* libc/time/strftime.c (strftime): Add %e format specifier.
@ -141,9 +141,11 @@ fseek (fp, offset, whence)
{
curoff = (*seekfn) (fp->_cookie, (fpos_t) 0, SEEK_CUR);
if (curoff == -1L)
_funlockfile(fp);
return EOF;
}
if (fp->_flags & __SRD)
curoff -= fp->_r;