aboutsummaryrefslogtreecommitdiffstats
path: root/libempathy
diff options
context:
space:
mode:
authorGuillaume Desmottes <guillaume.desmottes@collabora.co.uk>2012-08-08 18:10:57 +0800
committerGuillaume Desmottes <guillaume.desmottes@collabora.co.uk>2012-08-08 18:10:57 +0800
commita96d4b07c725e0532507d688bc548fa007bb2312 (patch)
tree8c754ce3d10273503558ffaddc49afcb38353c44 /libempathy
parent8ad196691413c2b40c525ad3a7335495b7102de3 (diff)
downloadgsoc2013-empathy-a96d4b07c725e0532507d688bc548fa007bb2312.tar
gsoc2013-empathy-a96d4b07c725e0532507d688bc548fa007bb2312.tar.gz
gsoc2013-empathy-a96d4b07c725e0532507d688bc548fa007bb2312.tar.bz2
gsoc2013-empathy-a96d4b07c725e0532507d688bc548fa007bb2312.tar.lz
gsoc2013-empathy-a96d4b07c725e0532507d688bc548fa007bb2312.tar.xz
gsoc2013-empathy-a96d4b07c725e0532507d688bc548fa007bb2312.tar.zst
gsoc2013-empathy-a96d4b07c725e0532507d688bc548fa007bb2312.zip
keyring: fix format issue
Diffstat (limited to 'libempathy')
-rw-r--r--libempathy/empathy-keyring.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/libempathy/empathy-keyring.c b/libempathy/empathy-keyring.c
index 1d59b4848..5b69cc25c 100644
--- a/libempathy/empathy-keyring.c
+++ b/libempathy/empathy-keyring.c
@@ -170,7 +170,7 @@ store_password_cb (GObject *source,
if (!secret_password_store_finish (result, &error))
{
g_simple_async_result_set_error (simple, TP_ERROR,
- TP_ERROR_DOES_NOT_EXIST, error->message);
+ TP_ERROR_DOES_NOT_EXIST, "%s", error->message);
g_error_free (error);
}