diff options
author | Ulrich Drepper <drepper@redhat.com> | 2000-04-07 16:45:34 +0000 |
---|---|---|
committer | Ulrich Drepper <drepper@redhat.com> | 2000-04-07 16:45:34 +0000 |
commit | b837918ee117012a5db016ea4f66196554d6f947 (patch) | |
tree | 1ded869acdace30988e0ac0f07fd4dbaf874eab2 /wcsmbs | |
parent | 404ee5fc7966af3b464c55e84bc4a956557117fe (diff) | |
download | glibc-b837918ee117012a5db016ea4f66196554d6f947.tar.gz glibc-b837918ee117012a5db016ea4f66196554d6f947.tar.xz glibc-b837918ee117012a5db016ea4f66196554d6f947.zip |
Update.
* stdio-common/printf-parse.h: Likewise.
Diffstat (limited to 'wcsmbs')
-rw-r--r-- | wcsmbs/mbsinit.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/wcsmbs/mbsinit.c b/wcsmbs/mbsinit.c index 727a9bc5e1..2982b5ec49 100644 --- a/wcsmbs/mbsinit.c +++ b/wcsmbs/mbsinit.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1996, 1997, 1998 Free Software Foundation, Inc. +/* Copyright (C) 1996, 1997, 1998, 2000 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper <drepper@gnu.ai.mit.edu>, 1996. @@ -32,6 +32,6 @@ int __mbsinit (ps) const mbstate_t *ps; { - return ps == NULL || ps->count == 0; + return ps == NULL || ps->__count == 0; } weak_alias (__mbsinit, mbsinit) |