diff options
Diffstat (limited to 'usr.bin/yacc/reader.c')
-rw-r--r-- | usr.bin/yacc/reader.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/usr.bin/yacc/reader.c b/usr.bin/yacc/reader.c index 3b724d3..0a46f29 100644 --- a/usr.bin/yacc/reader.c +++ b/usr.bin/yacc/reader.c @@ -704,7 +704,7 @@ get_literal() n = cinc; s = MALLOC(n); if (s == 0) no_space(); - + for (i = 0; i < n; ++i) s[i] = cache[i]; |