From 69f9d7693f1c71f64e9ecac3b14b24a29093b694 Mon Sep 17 00:00:00 2001 From: John Cupitt Date: Wed, 21 Nov 2007 08:44:48 +0000 Subject: [PATCH] stuff --- libsrc/iofuncs/im_open.c | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/libsrc/iofuncs/im_open.c b/libsrc/iofuncs/im_open.c index 4aed2477..fb712565 100644 --- a/libsrc/iofuncs/im_open.c +++ b/libsrc/iofuncs/im_open.c @@ -389,8 +389,8 @@ eval_cb( Progress *progress ) if( im->time->percent != progress->last_percent ) { /* \r at end returns to the start of this line. */ - printf( _( "%s: %d%% complete\r" ), - im->filename, im->time->percent ); + printf( _( "%s %s: %d%% complete\r" ), + g_get_prgname(), im->filename, im->time->percent ); fflush( stdout ); progress->last_percent = im->time->percent; @@ -406,8 +406,8 @@ evalend_cb( Progress *progress ) /* Spaces at end help to erase the %complete message we overwrite. */ - printf( _( "%s: done in %ds \n" ), - im->filename, im->time->run ); + printf( _( "%s %s: done in %ds \n" ), + g_get_prgname(), im->filename, im->time->run ); return( 0 ); }