summaryrefslogtreecommitdiff
path: root/gcc/c-lex.c
diff options
context:
space:
mode:
authorkenner <kenner@138bc75d-0d04-0410-961f-82ee72b054a4>1994-02-27 15:44:00 +0000
committerkenner <kenner@138bc75d-0d04-0410-961f-82ee72b054a4>1994-02-27 15:44:00 +0000
commite14a78f94525572bb247298e9f09cb4aa7d72465 (patch)
tree6b58378fb188394d2cb190ee2c82ad7a100fa4b7 /gcc/c-lex.c
parentee86034c647e9cd6b3af0ae57f7d13ae375deef2 (diff)
downloadgcc-e14a78f94525572bb247298e9f09cb4aa7d72465.tar.gz
(readescape): Initialize FIRSTDIG.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@6638 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/c-lex.c')
-rw-r--r--gcc/c-lex.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/gcc/c-lex.c b/gcc/c-lex.c
index b644d23177a..63c01de5b1a 100644
--- a/gcc/c-lex.c
+++ b/gcc/c-lex.c
@@ -1,5 +1,5 @@
/* Lexical analyzer for C and Objective C.
- Copyright (C) 1987, 1988, 1989, 1992 Free Software Foundation, Inc.
+ Copyright (C) 1987, 1988, 1989, 1992, 1994 Free Software Foundation, Inc.
This file is part of GNU CC.
@@ -892,7 +892,7 @@ readescape (ignore_ptr)
register int c = getc (finput);
register int code;
register unsigned count;
- unsigned firstdig;
+ unsigned firstdig = 0;
int nonnull;
switch (c)