Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
path: root/shell/ev-application.c
diff options
context:
space:
mode:
Diffstat (limited to 'shell/ev-application.c')
-rw-r--r--shell/ev-application.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/shell/ev-application.c b/shell/ev-application.c
index d4a1d1f..6e7a6e6 100644
--- a/shell/ev-application.c
+++ b/shell/ev-application.c
@@ -645,7 +645,7 @@ ev_application_shutdown (EvApplication *application)
application->print_settings_file,
&error);
if (error) {
- g_warning (error->message);
+ g_warning ("%s", error->message);
g_error_free (error);
}
@@ -803,7 +803,7 @@ ev_application_get_print_settings (EvApplication *application)
gtk_print_settings_new_from_file (application->print_settings_file, &error);
if (error) {
- g_warning (error->message);
+ g_warning ("%s", error->message);
g_error_free (error);
} else {
return application->print_settings;