From 854304ca2f32c38f06a25ff0710af098a5d120be Mon Sep 17 00:00:00 2001 From: Dave Davenport Date: Tue, 18 Apr 2017 19:32:01 +0200 Subject: [PATCH] Change screenshot warning to printf. --- source/view.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/source/view.c b/source/view.c index 883f3a78..0ee8f17d 100644 --- a/source/view.c +++ b/source/view.c @@ -210,7 +210,7 @@ static void menu_capture_screenshot ( void ) else { fpath = g_strdup ( outp ); } - g_warning ( color_green "Storing screenshot %s\n"color_reset, fpath ); + fprintf ( stderr, color_green "Storing screenshot %s\n"color_reset, fpath ); cairo_status_t status = cairo_surface_write_to_png ( CacheState.edit_surf, fpath ); if ( status != CAIRO_STATUS_SUCCESS ) { g_warning ( "Failed to produce screenshot '%s', got error: '%s'", fpath,