diff options
author | Funda Wang <fundawang@gmail.com> | 2011-09-28 08:00:49 +0800 |
---|---|---|
committer | Olav Vitters <olav@vitters.nl> | 2011-09-28 08:00:49 +0800 |
commit | ab96fd445cb6a8b707d60fb87553e4af6cf20dd5 (patch) | |
tree | 34847a88fbac76f95181a420b721eb6247bfc09e /embed/ephy-request-about.c | |
parent | b3e49495eade981bfd4685b017483ab4a39cfe99 (diff) | |
download | gsoc2013-epiphany-ab96fd445cb6a8b707d60fb87553e4af6cf20dd5.tar.gz gsoc2013-epiphany-ab96fd445cb6a8b707d60fb87553e4af6cf20dd5.tar.zst gsoc2013-epiphany-ab96fd445cb6a8b707d60fb87553e4af6cf20dd5.zip |
fix string format
Diffstat (limited to 'embed/ephy-request-about.c')
-rw-r--r-- | embed/ephy-request-about.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/embed/ephy-request-about.c b/embed/ephy-request-about.c index 497800289..331442729 100644 --- a/embed/ephy-request-about.c +++ b/embed/ephy-request-about.c @@ -74,7 +74,7 @@ read_css_style (EphyRequestAbout *about) GError *error = NULL; if (!g_file_get_contents (ephy_file ("about.css"), &about->priv->css_style, NULL, &error)) - g_debug (error->message); + g_debug ("%s", error->message); } static GInputStream * |