A pedantic addition of a format string to a printf call

The printf used to clear the screen didn't have a format string, this
adds one to avoid a compiler warning.

Signed-off-by: Eric Anholt <eric@anholt.net>
This commit is contained in:
Robert Bragg 2009-04-17 19:01:04 +01:00 committed by Eric Anholt
parent 700e45a522
commit 8c7be93544

View File

@ -313,7 +313,7 @@ int main(int argc, char **argv)
qsort(top_bits_sorted, num_top_bits, sizeof(struct top_bit *),
top_bits_sort);
printf(clear_screen);
printf("%s", clear_screen);
print_clock_info();