summaryrefslogtreecommitdiff
path: root/apps/plugins/md5sum.c
diff options
context:
space:
mode:
Diffstat (limited to 'apps/plugins/md5sum.c')
-rw-r--r--apps/plugins/md5sum.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/apps/plugins/md5sum.c b/apps/plugins/md5sum.c
index 084256b..f95cd20 100644
--- a/apps/plugins/md5sum.c
+++ b/apps/plugins/md5sum.c
@@ -58,7 +58,7 @@ static void hash_file( int out, const char *path )
{
char string[MD5_STRING_LENGTH+1];
done++;
- rb->splash( 0, "%d / %d : %s", done, count, path );
+ rb->splashf( 0, "%d / %d : %s", done, count, path );
if( hash( string, path ) )
rb->write( out, "error", 5 );
else
@@ -140,7 +140,7 @@ static void hash_check( int out, const char *path )
{
const char *filename = rb->strchr( line, ' ' );
done++;
- rb->splash( 0, "%d / %d : %s", done, count, filename );
+ rb->splashf( 0, "%d / %d : %s", done, count, filename );
if( !filename || len < MD5_STRING_LENGTH + 2 )
{
const char error[] = "Malformed input line ... skipping";