projects
/
oweals
/
busybox.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
78a5ef9
)
fix !CONFIG_FLOAT_DURATION build
author
Denys Vlasenko
<vda.linux@googlemail.com>
Sun, 26 Aug 2018 14:32:16 +0000
(16:32 +0200)
committer
Denys Vlasenko
<vda.linux@googlemail.com>
Sun, 26 Aug 2018 14:32:16 +0000
(16:32 +0200)
Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
libbb/duration.c
patch
|
blob
|
history
diff --git
a/libbb/duration.c
b/libbb/duration.c
index 2f272771f3996862ff1d6b0c93434e137df1bc77..5acd0dba30a146d6551d4032eb1bf7e0c2213277 100644
(file)
--- a/
libbb/duration.c
+++ b/
libbb/duration.c
@@
-73,6
+73,6
@@
void FAST_FUNC sleep_for_duration(duration_t duration)
#else
duration_t FAST_FUNC parse_duration_str(char *str)
{
- return xatou_range_sfx(
*argv
, 0, UINT_MAX, duration_suffixes);
+ return xatou_range_sfx(
str
, 0, UINT_MAX, duration_suffixes);
}
#endif