summaryrefslogtreecommitdiff
path: root/libbb
diff options
context:
space:
mode:
authorDenis Vlasenko <vda.linux@googlemail.com>2007-09-29 18:27:14 +0000
committerDenis Vlasenko <vda.linux@googlemail.com>2007-09-29 18:27:14 +0000
commit1ebd0a6d9162c377e4b214c0a506d3f78702d66e (patch)
tree5ecc9378f962b73ba19b76f17f533c61c7e316e8 /libbb
parent66bbfbd581669dfada661c2de5d15187be61f786 (diff)
downloadbusybox-w32-1ebd0a6d9162c377e4b214c0a506d3f78702d66e.tar.gz
busybox-w32-1ebd0a6d9162c377e4b214c0a506d3f78702d66e.tar.bz2
busybox-w32-1ebd0a6d9162c377e4b214c0a506d3f78702d66e.zip
remove if() which is always true
Diffstat (limited to 'libbb')
-rw-r--r--libbb/procps.c3
1 files changed, 1 insertions, 2 deletions
diff --git a/libbb/procps.c b/libbb/procps.c
index f1c0b6d27..e62e5a1f1 100644
--- a/libbb/procps.c
+++ b/libbb/procps.c
@@ -382,8 +382,7 @@ procps_status_t *procps_scan(procps_status_t* sp, int flags)
382 n = read_to_buf(filename, buf); 382 n = read_to_buf(filename, buf);
383 if (n <= 0) 383 if (n <= 0)
384 break; 384 break;
385 if (flags & PSSCAN_ARGV0) 385 sp->argv0 = xstrdup(buf);
386 sp->argv0 = xstrdup(buf);
387 } 386 }
388#endif 387#endif
389 break; 388 break;