diff options
Diffstat (limited to 'gcc/cplus-dem.c')
-rw-r--r-- | gcc/cplus-dem.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gcc/cplus-dem.c b/gcc/cplus-dem.c index abc85bb..21e3b6e 100644 --- a/gcc/cplus-dem.c +++ b/gcc/cplus-dem.c @@ -2003,7 +2003,7 @@ gnu_special (work, mangled, declp) ".<digits>" indicating a static local symbol. In any case, declare victory and move on; *don't* try to use n to allocate. */ - if (n >= strlen (*mangled)) + if (n > strlen (*mangled)) { success = 1; break; |