bbunit: fix WANT_TIMING compilation
authorDenys Vlasenko <vda.linux@googlemail.com>
Wed, 26 Nov 2014 13:04:51 +0000 (14:04 +0100)
committerDenys Vlasenko <vda.linux@googlemail.com>
Wed, 26 Nov 2014 13:04:51 +0000 (14:04 +0100)
Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
libbb/bbunit.c

index 256014441ea79871b639bf58d93b853a7c8adb65..4c692d59f5092806f01f9ec1865a82f9b8f0ae18 100644 (file)
@@ -77,7 +77,7 @@ int unit_main(int argc UNUSED_PARAM, char **argv UNUSED_PARAM)
 #if WANT_TIMING
        gettimeofday(&end, NULL);
        timeval_diff(&time_spent, &end, &begin);
-       bb_error_msg("Elapsed time %u.%06u seconds"
+       bb_error_msg("Elapsed time %u.%06u seconds",
                        (int)time_spent.tv_sec,
                        (int)time_spent.tv_usec);
 #endif