From 2b90aa097ee5049e9f40262476de078dfe02f45f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?P=C5=99emysl=20Janouch?= Date: Thu, 31 Jul 2014 23:09:48 +0200 Subject: [PATCH] ZyklonB: fix the `print' plugin command --- src/zyklonb.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/zyklonb.c b/src/zyklonb.c index 1d2388f..919bf1d 100644 --- a/src/zyklonb.c +++ b/src/zyklonb.c @@ -807,7 +807,7 @@ plugin_process_message (const struct irc_message *msg, if (msg->params.len < 2) return; - printf ("%s", msg->params.vector[1]); + printf ("%s\n", msg->params.vector[1]); } } else if (plugin->initialized)