diff options
author | dequis <dx@dxzone.com.ar> | 2016-11-19 05:10:48 -0300 |
---|---|---|
committer | dequis <dx@dxzone.com.ar> | 2016-11-19 05:10:48 -0300 |
commit | 11d4123fe9a4d88d475bee6c623fb80af8fdbb0b (patch) | |
tree | 0734b718ea2bb03e540da38060c9efe217e7aad5 /protocols/unknown.c | |
parent | 66b7741126ee3cdeb348a3d3858c28a611466ca9 (diff) |
protocols/unknown: Fix format-security warning
Which is -Werror'd in debian builds
Diffstat (limited to 'protocols/unknown.c')
-rw-r--r-- | protocols/unknown.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/protocols/unknown.c b/protocols/unknown.c index 2ab3360e..105b2f62 100644 --- a/protocols/unknown.c +++ b/protocols/unknown.c @@ -33,7 +33,7 @@ static void unknown_prpl_login(account_t *acc) imcb_error(ic, "Unknown protocol"); msg = explain_unknown_protocol(acc->prpl->name); - imcb_error(ic, msg); + imcb_error(ic, "%s", msg); g_free(msg); imc_logout(ic, FALSE); |