diff options
author | Wilmer van der Gaast <wilmer@gaast.net> | 2007-04-15 14:59:52 -0700 |
---|---|---|
committer | Wilmer van der Gaast <wilmer@gaast.net> | 2007-04-15 14:59:52 -0700 |
commit | cd4723c257f9f7bd8d4a46c6562f93c2aefc3dbb (patch) | |
tree | 409bbd6422dff0c22257e6106220ab42969c9a97 /protocols/jabber/iq.c | |
parent | 552e641194147078c7858059df9916d5d548b7a1 (diff) |
More format string problems.
Diffstat (limited to 'protocols/jabber/iq.c')
-rw-r--r-- | protocols/jabber/iq.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/protocols/jabber/iq.c b/protocols/jabber/iq.c index e1848272..86dca30a 100644 --- a/protocols/jabber/iq.c +++ b/protocols/jabber/iq.c @@ -535,7 +535,7 @@ static xt_status jabber_iq_display_vcard( struct im_connection *ic, struct xt_no /* *sigh* */ - imc_log( ic, reply->str ); + imc_log( ic, "%s", reply->str ); g_string_free( reply, TRUE ); return XT_HANDLED; |