diff options
| -rw-r--r-- | sys/src/9/port/chan.c | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/sys/src/9/port/chan.c b/sys/src/9/port/chan.c index 77bc9951d..1d539912c 100644 --- a/sys/src/9/port/chan.c +++ b/sys/src/9/port/chan.c @@ -1277,8 +1277,9 @@ Chan* namec(char *aname, int amode, int omode, ulong perm) { int len, n, t, nomount; - Chan *c, *cnew; - Path *path; + Chan *c; + Chan *volatile cnew; + Path *volatile path; Elemlist e; Rune r; Mhead *m; |
