2002-06-24 WATANABE Hirofumi <eban@os.rim.or.jp>

* libc/stdio/fseek.c (fseek): Fix braces.
This commit is contained in:
Thomas Fitzsimmons 2002-06-24 15:59:38 +00:00
parent 1fd072b6e4
commit 30a0616840
2 changed files with 8 additions and 2 deletions

View File

@ -1,3 +1,7 @@
2002-06-24 WATANABE Hirofumi <eban@os.rim.or.jp>
* libc/stdio/fseek.c (fseek): Fix braces.
2002-06-21 Corinna Vinschen <corinna@vinschen.de>
* libc/time/strftime.c (strftime): Add %e format specifier.

View File

@ -141,8 +141,10 @@ fseek (fp, offset, whence)
{
curoff = (*seekfn) (fp->_cookie, (fpos_t) 0, SEEK_CUR);
if (curoff == -1L)
_funlockfile(fp);
return EOF;
{
_funlockfile(fp);
return EOF;
}
}
if (fp->_flags & __SRD)
{