aboutsummaryrefslogtreecommitdiff
path: root/procps/pstree.c
diff options
context:
space:
mode:
authorDenys Vlasenko <vda.linux@googlemail.com>2017-06-15 17:11:59 +0200
committerDenys Vlasenko <vda.linux@googlemail.com>2017-06-15 17:11:59 +0200
commit5d72ae53c972bd55864f47523e3923b1c683c185 (patch)
tree12b160529f19972fca76bde047fac8a86fff2c3f /procps/pstree.c
parent45100b8d07aa69945194610a30cb427901128312 (diff)
downloadbusybox-5d72ae53c972bd55864f47523e3923b1c683c185.tar.gz
fix "ifdef ENABLE_foo": should always be "#if ENABLE_foo"
function old new delta pack_gzip 1729 1789 +60 fill_window 220 216 -4 static.gzip_level_config 24 - -24 gzip_main 275 192 -83 ------------------------------------------------------------------------------ (add/remove: 0/1 grow/shrink: 1/2 up/down: 60/-111) Total: -51 bytes Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
Diffstat (limited to 'procps/pstree.c')
-rw-r--r--procps/pstree.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/procps/pstree.c b/procps/pstree.c
index f97e99639..bc9f0c927 100644
--- a/procps/pstree.c
+++ b/procps/pstree.c
@@ -34,7 +34,7 @@
struct child;
-#ifdef ENABLE_FEATURE_SHOW_THREADS
+#if ENABLE_FEATURE_SHOW_THREADS
/* For threads, we add {...} around the comm, so we need two extra bytes */
# define COMM_DISP_LEN (COMM_LEN + 2)
#else