diff options
Diffstat (limited to 'libbb/time.c')
-rw-r--r-- | libbb/time.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libbb/time.c b/libbb/time.c index f9b8da0..cab0ad6 100644 --- a/libbb/time.c +++ b/libbb/time.c @@ -258,7 +258,7 @@ char* FAST_FUNC strftime_YYYYMMDDHHMMSS(char *buf, unsigned len, time_t *tp) static void get_mono(struct timespec *ts) { if (syscall(__NR_clock_gettime, CLOCK_MONOTONIC, ts)) - bb_error_msg_and_die("clock_gettime(MONOTONIC) failed"); + bb_simple_error_msg_and_die("clock_gettime(MONOTONIC) failed"); } unsigned long long FAST_FUNC monotonic_ns(void) { |