summaryrefslogtreecommitdiffstats
path: root/source
diff options
context:
space:
mode:
authorDave Davenport <qball@gmpclient.org>2017-04-18 19:32:01 +0200
committerDave Davenport <qball@gmpclient.org>2017-04-18 19:32:52 +0200
commit854304ca2f32c38f06a25ff0710af098a5d120be (patch)
tree5b7a5050c0ad69cd6e75468bdedbd5f84461d474 /source
parent4157b5d82529a2c251fb134b192d0f6f0d5a3a1c (diff)
Change screenshot warning to printf.
Diffstat (limited to 'source')
-rw-r--r--source/view.c2
1 files changed, 1 insertions, 1 deletions
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,