1
0
mirror of https://github.com/weechat/weechat.git synced 2026-06-25 04:16:38 +02:00

script: fix missing format in calls to snprintf

This commit is contained in:
Sebastien Helleu
2012-08-14 19:19:02 +02:00
parent 4fb991d07c
commit 4c6ee497aa
+2
View File
@@ -200,6 +200,7 @@ script_buffer_display_line_script (int line, struct t_repo_script *script)
break;
case 's': /* status */
snprintf (str_item, sizeof (str_item),
"%s",
script_repo_get_status_for_display (script,
"*iHrN", 0));
break;
@@ -494,6 +495,7 @@ script_buffer_refresh (int clear)
if (script_buffer_detail_script)
{
snprintf (str_title, sizeof (str_title),
"%s",
_("alt+d=back to list"));
}
else