diff options
author | Thomas Bushnell, BSG <thomas@gnu.org> | 1996-08-29 21:09:30 +0000 |
---|---|---|
committer | Thomas Bushnell, BSG <thomas@gnu.org> | 1996-08-29 21:09:30 +0000 |
commit | 747e2b436143d80406e21f647f7ba9837f73a173 (patch) | |
tree | 5d5585d595c8a06607ea8cf9d15c67a361e6cf1c /stdio | |
parent | bfb826224b971666d5e9f9ce3b04c1cfbf839258 (diff) | |
download | glibc-747e2b436143d80406e21f647f7ba9837f73a173.tar.gz glibc-747e2b436143d80406e21f647f7ba9837f73a173.tar.xz glibc-747e2b436143d80406e21f647f7ba9837f73a173.zip |
*** empty log message ***
* sysdeps/mach/hurd/setitimer.c (setitimer_locked): Correct spelling error of _hurd_itimerval.
Diffstat (limited to 'stdio')
-rw-r--r-- | stdio/fseek.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/stdio/fseek.c b/stdio/fseek.c index 562b7b3cb6..947e4657ca 100644 --- a/stdio/fseek.c +++ b/stdio/fseek.c @@ -42,7 +42,7 @@ DEFUN(fseek, (stream, offset, whence), return EOF; /* Make sure we know the current offset info. */ - stream.__offset = -1; + stream->__offset = -1; if (__stdio_check_offset (stream) == EOF) return EOF; |