From f082f9012157bada176f691abb7d02c51a38e1d5 Mon Sep 17 00:00:00 2001 From: Emanuele Giaquinta Date: Sun, 1 Oct 2006 10:21:15 +0000 Subject: [PATCH] Add missing format string argument in printtext_dest call, patch by loafier. git-svn-id: http://svn.irssi.org/repos/irssi/trunk@4384 dbcabf3a-b0e7-0310-adc4-f8d773084564 --- src/perl/ui/Formats.xs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/perl/ui/Formats.xs b/src/perl/ui/Formats.xs index 53c45d1b..7ff31aac 100644 --- a/src/perl/ui/Formats.xs +++ b/src/perl/ui/Formats.xs @@ -133,4 +133,4 @@ print(dest, str) Irssi::UI::TextDest dest char *str CODE: - printtext_dest(dest, str); + printtext_dest(dest, "%s", str);