From: Ulrich Drepper Date: Thu, 23 Sep 1999 18:51:53 +0000 (+0000) Subject: Fix typo. X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=655df667036eb58de4915b507b4e7ac99528d101;p=thirdparty%2Fglibc.git Fix typo. --- diff --git a/stdio-common/vfscanf.c b/stdio-common/vfscanf.c index 72afbda3fd5..bf9c4709c02 100644 --- a/stdio-common/vfscanf.c +++ b/stdio-common/vfscanf.c @@ -1018,7 +1018,7 @@ __vfscanf (FILE *s, const char *format, va_list argptr) { /* Maybe "inf" or "infinity". */ ADDW (c); - if (witdth == 0 || inchar () == EOF || _tolower (c) != 'n') + if (width == 0 || inchar () == EOF || _tolower (c) != 'n') input_error (); if (width > 0) --width;