diff options
author | Denis Vlasenko <vda.linux@googlemail.com> | 2008-06-23 22:31:52 +0000 |
---|---|---|
committer | Denis Vlasenko <vda.linux@googlemail.com> | 2008-06-23 22:31:52 +0000 |
commit | cc3f20b9bdf9a46c41877dab4900eb2997b72019 (patch) | |
tree | 4447fc490a0f65921d5c324283da20c837121535 /shell/ash.c | |
parent | 211b59be431350b2cc6685f5365ad5e6b597dc18 (diff) |
fix breakage found by randomconfig
Diffstat (limited to 'shell/ash.c')
-rw-r--r-- | shell/ash.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/shell/ash.c b/shell/ash.c index d4da391a0..dd20fe338 100644 --- a/shell/ash.c +++ b/shell/ash.c @@ -8983,7 +8983,7 @@ preadfd(void) } } #else - nr = nonblock_safe_read(parsefile->fd, buf, BUFSIZ - 1); + nr = nonblock_safe_read(g_parsefile->fd, buf, BUFSIZ - 1); #endif #if 0 |