We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 21073d4 commit c99d768Copy full SHA for c99d768
thumbnailer/atril-thumbnailer.c
@@ -62,10 +62,10 @@ time_monitor (gpointer data)
62
app_name = g_get_application_name ();
63
if (app_name == NULL)
64
app_name = g_get_prgname ();
65
- g_print ("%s couldn't process file: '%s'\n"
66
- "Reason: Took too much time to process.\n",
67
- app_name,
68
- (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);
69
70
exit (0);
71
}
@@ -271,7 +271,7 @@ main (int argc, char *argv[])
271
g_option_context_free (context);
272
273
if (size < 1) {
274
- g_print ("Size cannot be smaller than 1 pixel\n");
+ g_printerr ("Size cannot be smaller than 1 pixel\n");
275
return -1;
276
277
0 commit comments