aboutsummaryrefslogtreecommitdiff
path: root/editors/awk.c
diff options
context:
space:
mode:
authorDenis Vlasenko <vda.linux@googlemail.com>2007-04-12 00:32:05 +0000
committerDenis Vlasenko <vda.linux@googlemail.com>2007-04-12 00:32:05 +0000
commit51742f4bb0c57a4d5063ece9437a2f34a42e52c8 (patch)
tree7a912fc65ff43bdb09078d75bfc02ad8f5380b47 /editors/awk.c
parent50f7f446ecaadef6895a4ee601567e0b68330637 (diff)
downloadbusybox-w32-51742f4bb0c57a4d5063ece9437a2f34a42e52c8.tar.gz
busybox-w32-51742f4bb0c57a4d5063ece9437a2f34a42e52c8.tar.bz2
busybox-w32-51742f4bb0c57a4d5063ece9437a2f34a42e52c8.zip
style fixes. No code changes
Diffstat (limited to 'editors/awk.c')
-rw-r--r--editors/awk.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/editors/awk.c b/editors/awk.c
index 1bdb9b924..5a504d034 100644
--- a/editors/awk.c
+++ b/editors/awk.c
@@ -2145,7 +2145,8 @@ static var *evaluate(node *op, var *res)
2145 X.rsm = newfile(R.s); 2145 X.rsm = newfile(R.s);
2146 if (! X.rsm->F) { 2146 if (! X.rsm->F) {
2147 if (opn == '|') { 2147 if (opn == '|') {
2148 if((X.rsm->F = popen(R.s, "w")) == NULL) 2148 X.rsm->F = popen(R.s, "w");
2149 if (X.rsm->F == NULL)
2149 bb_perror_msg_and_die("popen"); 2150 bb_perror_msg_and_die("popen");
2150 X.rsm->is_pipe = 1; 2151 X.rsm->is_pipe = 1;
2151 } else { 2152 } else {