diff options
author | Roland McGrath <roland@gnu.org> | 1995-03-20 08:21:38 +0000 |
---|---|---|
committer | Roland McGrath <roland@gnu.org> | 1995-03-20 08:21:38 +0000 |
commit | 1e9dc0393c67ff7eb2d7691931303e58dc112f5a (patch) | |
tree | deff3cdd7fcc4348770e8dca2c76b045bb526f24 /stdio | |
parent | be69ea41ebade5819509b32e1b41ce1853392611 (diff) | |
download | glibc-1e9dc0393c67ff7eb2d7691931303e58dc112f5a.tar.gz |
Mon Mar 20 03:19:23 1995 Roland McGrath <roland@churchy.gnu.ai.mit.edu>
* stdio/vfscanf.c (%n): Use READ_IN - 1, so as not to count the
read-ahead character.
* hurd/dtable.c, hurd/getdport.c, hurd/hurd.h, hurd/hurdexec.c,
hurd/hurdinit.c, hurd/hurdprio.c, hurd/hurdsock.c,
hurd/ports-get.c, hurd/ports-set.c, hurd/setauth.c,
hurd/setuids.c, sysdeps/mach/hurd/i386/trampoline.c:
Get anal with unsigned to pacify compiler.
Diffstat (limited to 'stdio')
-rw-r--r-- | stdio/vfscanf.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/stdio/vfscanf.c b/stdio/vfscanf.c index cacf16f466..cdfedc2485 100644 --- a/stdio/vfscanf.c +++ b/stdio/vfscanf.c @@ -251,7 +251,7 @@ DEFUN(__vfscanf, (s, format, arg), case 'n': /* Answer number of assignments done. */ if (do_assign) - *ARG (int *) = read_in; + *ARG (int *) = read_in - 1; /* Don't count the read-ahead. */ break; case 'c': /* Match characters. */ |