summaryrefslogtreecommitdiff
path: root/utils/c2l/lex.c
diff options
context:
space:
mode:
Diffstat (limited to 'utils/c2l/lex.c')
-rw-r--r--utils/c2l/lex.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/utils/c2l/lex.c b/utils/c2l/lex.c
index 574ecfc6..3525fbe3 100644
--- a/utils/c2l/lex.c
+++ b/utils/c2l/lex.c
@@ -266,7 +266,7 @@ void
newio(void)
{
Io *i;
- static pushdepth = 0;
+ static int pushdepth = 0;
i = iofree;
if(i == I) {
@@ -1206,7 +1206,7 @@ cinit(void)
if(mygetwd(pathname, 99) == 0) {
pathname = allocn(pathname, 100, 900);
if(mygetwd(pathname, 999) == 0)
- strcpy(pathname, "/???");
+ strcpy(pathname, "/?");
}
fmtinstall('f', gfltconv);