1
0
mirror of https://github.com/weechat/weechat.git synced 2026-07-03 00:03:12 +02:00

tests: add missing format string in calls to snprintf

This commit is contained in:
Sébastien Helleu
2024-01-21 09:17:11 +01:00
parent d5b61f565e
commit 05fdb2929f
2 changed files with 5 additions and 5 deletions
+1 -1
View File
@@ -198,7 +198,7 @@ TEST(IrcInfo, InfoIrcNickColorCb)
WEE_TEST_STR(NULL, hook_info_get (NULL, "irc_nick_color_name", NULL));
WEE_TEST_STR(NULL, hook_info_get (NULL, "irc_nick_color_name", ""));
snprintf (str_color, sizeof (str_color), gui_color_get_custom ("186"));
snprintf (str_color, sizeof (str_color), "%s", gui_color_get_custom ("186"));
WEE_TEST_STR(str_color, hook_info_get (NULL, "irc_nick_color", "Nick"));
WEE_TEST_STR("186", hook_info_get (NULL, "irc_nick_color_name", "Nick"));
}