aboutsummaryrefslogtreecommitdiff
path: root/coreutils/head.c
diff options
context:
space:
mode:
authoraldot <aldot@69ca8d6d-28ef-0310-b511-8ec308f3f277>2005-12-15 11:47:16 +0000
committeraldot <aldot@69ca8d6d-28ef-0310-b511-8ec308f3f277>2005-12-15 11:47:16 +0000
commit477c7779f30f712e479594baab029464742adaa3 (patch)
tree409f63f4f4460302559cfdd3ff507f61a554eed9 /coreutils/head.c
parent9387932b5ed5af746865b0adbb60d8d889139e65 (diff)
downloadbusybox-w32-477c7779f30f712e479594baab029464742adaa3.tar.gz
busybox-w32-477c7779f30f712e479594baab029464742adaa3.tar.bz2
busybox-w32-477c7779f30f712e479594baab029464742adaa3.zip
- Stephane Billiart writes:
Fix the compilation of head and tail. thanks! git-svn-id: svn://busybox.net/trunk/busybox@12897 69ca8d6d-28ef-0310-b511-8ec308f3f277
Diffstat (limited to 'coreutils/head.c')
-rw-r--r--coreutils/head.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/coreutils/head.c b/coreutils/head.c
index 628dae5ea..eb0dcf212 100644
--- a/coreutils/head.c
+++ b/coreutils/head.c
@@ -85,7 +85,7 @@ int head_main(int argc, char **argv)
85#endif 85#endif
86 case 'n': 86 case 'n':
87 p = optarg; 87 p = optarg;
88#if ENABLE_FEATURE_FANCY_HEAD 88#if defined CONFIG_FEATURE_SUSv2 || ENABLE_FEATURE_FANCY_HEAD
89 GET_COUNT: 89 GET_COUNT:
90#endif 90#endif
91 count = bb_xgetularg10(p); 91 count = bb_xgetularg10(p);