fix up potential printf's with unsafe format strings

Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
This commit is contained in:
Denys Vlasenko
2009-10-24 17:47:56 +02:00
parent 4b8b37f981
commit 0939f2ebd2
2 changed files with 2 additions and 2 deletions

View File

@@ -41,7 +41,7 @@ static unsigned sum_file(const char *file, unsigned type)
if (!bytes_read && !r)
/* no error */
break;
bb_perror_msg(file);
bb_simple_perror_msg(file);
return 0;
}