From a2e9619c0d3e6866b137875b1fff3ec8ce590cd5 Mon Sep 17 00:00:00 2001 From: Julian Ospald Date: Sat, 12 Mar 2016 18:29:45 +0100 Subject: Fix format security warning --- steam-mobile/steam_rsa.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/steam-mobile/steam_rsa.c b/steam-mobile/steam_rsa.c index 650baa9..03d757c 100644 --- a/steam-mobile/steam_rsa.c +++ b/steam-mobile/steam_rsa.c @@ -561,7 +561,7 @@ steam_encrypt_password(const gchar *modulus_str, const gchar *exponent_str, cons { unsigned long error_num = ERR_get_error(); char *error_str = ERR_error_string(error_num, NULL); - purple_debug_error("steam", error_str); + purple_debug_error("steam", "%s", error_str); RSA_free(rsa); g_free(encrypted); return NULL; -- cgit v1.2.3