diff options
Diffstat (limited to 'rtc')
| -rw-r--r-- | rtc/pcf8563.c | 2 | 
1 files changed, 1 insertions, 1 deletions
| diff --git a/rtc/pcf8563.c b/rtc/pcf8563.c index 97b09b872..05ae97eab 100644 --- a/rtc/pcf8563.c +++ b/rtc/pcf8563.c @@ -64,7 +64,7 @@ void rtc_get (struct rtc_time *tmp)  		rtc_read (0x09) );  	if (sec & 0x80) { -		printf ("### Warning: RTC Low Voltage - date/time not reliable\n"); +		puts ("### Warning: RTC Low Voltage - date/time not reliable\n");  	}  	tmp->tm_sec  = bcd2bin (sec  & 0x7F); |