ZyklonB: fix the `print' plugin command

This commit is contained in:
Přemysl Eric Janouch 2014-07-31 23:09:48 +02:00
parent 8ece6a4f64
commit 2b90aa097e
1 changed files with 1 additions and 1 deletions

View File

@ -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)