diff options
author | Denys Vlasenko | 2009-09-23 23:15:43 +0200 |
---|---|---|
committer | Denys Vlasenko | 2009-09-23 23:15:43 +0200 |
commit | 606291beabab14c85a141c7a4225fbcab8d19fbd (patch) | |
tree | 4f46cd21214432feeb610e237e8dd49ef908c8f6 /shell/ash.c | |
parent | 1f27ab0d4bb65425496ff4ed0fbbd0f5bb32786f (diff) | |
download | busybox-606291beabab14c85a141c7a4225fbcab8d19fbd.zip busybox-606291beabab14c85a141c7a4225fbcab8d19fbd.tar.gz |
*: more portability fixes by Dan Fandrich
Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
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 db28af7..b7c6431 100644 --- a/shell/ash.c +++ b/shell/ash.c @@ -5042,7 +5042,7 @@ struct redirtab { struct redirtab *next; int nullredirs; int pair_count; - struct two_fd_t two_fd[0]; + struct two_fd_t two_fd[]; }; #define redirlist (G_var.redirlist) |