diff options
-rw-r--r-- | thumbnailer/atril-thumbnailer.c | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/thumbnailer/atril-thumbnailer.c b/thumbnailer/atril-thumbnailer.c index bc62502d..6e189040 100644 --- a/thumbnailer/atril-thumbnailer.c +++ b/thumbnailer/atril-thumbnailer.c @@ -62,10 +62,10 @@ time_monitor (gpointer data) app_name = g_get_application_name (); if (app_name == NULL) app_name = g_get_prgname (); - g_print ("%s couldn't process file: '%s'\n" - "Reason: Took too much time to process.\n", - app_name, - (const char *) data); + g_printerr ("%s couldn't process file: '%s'\n" + "Reason: Took too much time to process.\n", + app_name, + (const char *) data); exit (0); } @@ -271,7 +271,7 @@ main (int argc, char *argv[]) g_option_context_free (context); if (size < 1) { - g_print ("Size cannot be smaller than 1 pixel\n"); + g_printerr ("Size cannot be smaller than 1 pixel\n"); return -1; } |