From 655df667036eb58de4915b507b4e7ac99528d101 Mon Sep 17 00:00:00 2001 From: Ulrich Drepper Date: Thu, 23 Sep 1999 18:51:53 +0000 Subject: [PATCH] Fix typo. --- stdio-common/vfscanf.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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; -- 2.47.2