diff options
author | Denys Vlasenko <vda.linux@googlemail.com> | 2010-09-25 17:19:04 +0200 |
---|---|---|
committer | Denys Vlasenko <vda.linux@googlemail.com> | 2010-09-25 17:19:04 +0200 |
commit | 04bcd998ca48954db738232f46fe3dfc273db36a (patch) | |
tree | 4cd72956ab83164e72ddba6c023cebc660577863 | |
parent | b563f62bbb1c9a6d931924f8fd7c3e52bb3d5875 (diff) | |
download | busybox-04bcd998ca48954db738232f46fe3dfc273db36a.tar.gz |
style fix. no code chages
Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
-rw-r--r-- | coreutils/sleep.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/coreutils/sleep.c b/coreutils/sleep.c index 9acb2d15f..433f9d6ee 100644 --- a/coreutils/sleep.c +++ b/coreutils/sleep.c @@ -50,7 +50,8 @@ int sleep_main(int argc UNUSED_PARAM, char **argv) #if ENABLE_FEATURE_FLOAT_SLEEP # if ENABLE_LOCALE_SUPPORT - setlocale (LC_NUMERIC, "C"); + /* undo busybox.c setlocale */ + setlocale(LC_NUMERIC, "C"); # endif duration = 0; do { |