From: Robert Griebl Date: Tue, 26 Aug 2003 11:06:39 +0000 (-0000) Subject: Removed some debug printfs X-Git-Tag: 1_00_pre3~63 X-Git-Url: https://git.librecmc.org/?a=commitdiff_plain;h=444566837c4b98f364fa486f9f288b0775ed3ed6;p=oweals%2Fbusybox.git Removed some debug printfs --- diff --git a/util-linux/hwclock.c b/util-linux/hwclock.c index 2eee3cfdb..4c59ef055 100644 --- a/util-linux/hwclock.c +++ b/util-linux/hwclock.c @@ -114,13 +114,9 @@ void write_rtc ( time_t t, int utc ) bb_perror_msg_and_die ( "Could not access RTC" ); } - printf ( "1\n" ); - tm = *( utc ? gmtime ( &t ) : localtime ( &t )); tm. tm_isdst = 0; - printf ( "2\n") ; - if ( ioctl ( rtc, RTC_SET_TIME, &tm ) < 0 ) bb_perror_msg_and_die ( "Could not set the RTC time" );