Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.com/Remmina/Remmina.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAntenore Gatta <antenore@simbiosi.org>2019-07-29 18:02:24 +0300
committerAntenore Gatta <antenore@simbiosi.org>2019-07-29 18:02:24 +0300
commitd66f7c667b3816ea8f800e67a3b4cc3841930ef6 (patch)
tree68ccc755b3c08f45fd470926f02fe3f5a6cad8d6 /plugins/www/www_plugin.c
parent0a9af2ca0bb17c8707059945ea9e7115c45f2989 (diff)
Error messages are always fatal, switching to g_warning
Diffstat (limited to 'plugins/www/www_plugin.c')
-rw-r--r--plugins/www/www_plugin.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/plugins/www/www_plugin.c b/plugins/www/www_plugin.c
index 75a836893..1cc805a80 100644
--- a/plugins/www/www_plugin.c
+++ b/plugins/www/www_plugin.c
@@ -709,7 +709,7 @@ static void remmina_plugin_www_save_snapshot(GObject *object, GAsyncResult *resu
surface = webkit_web_view_get_snapshot_finish(WEBKIT_WEB_VIEW(webview), result, &err);
if (err)
- g_error("An error happened generating the snapshot: %s\n", err->message);
+ g_warning("An error happened generating the snapshot: %s\n", err->message);
//buffer = cairo_image_surface_get_data (surface);
width = cairo_image_surface_get_width(surface);
height = cairo_image_surface_get_height(surface);