diff options
author | Bernhard Reutner-Fischer | 2007-11-16 12:39:16 +0000 |
---|---|---|
committer | Bernhard Reutner-Fischer | 2007-11-16 12:39:16 +0000 |
commit | 7c2db5c1988da00c101cc2aeb8767f18a1fe9eb9 (patch) | |
tree | 91c162970616efec52217652571a0b140601024e /coreutils/split.c | |
parent | a702457eac1d2b014f108f78605d7fb6424b5844 (diff) | |
download | busybox-7c2db5c1988da00c101cc2aeb8767f18a1fe9eb9.zip busybox-7c2db5c1988da00c101cc2aeb8767f18a1fe9eb9.tar.gz |
- use standard-imposed constants some more
Diffstat (limited to 'coreutils/split.c')
-rw-r--r-- | coreutils/split.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/coreutils/split.c b/coreutils/split.c index 51a631c..895a04b 100644 --- a/coreutils/split.c +++ b/coreutils/split.c @@ -137,5 +137,5 @@ int split_main(int argc, char **argv) src += to_write; } while (bytes_read); } - return 0; + return EXIT_SUCCESS; } |