From f661f2a570ffea1eec2e6cd6ccec078ffe8a7409 Mon Sep 17 00:00:00 2001 From: prozacx Date: Tue, 26 Apr 2005 16:40:48 +0000 Subject: [PATCH] Added a space at the end of the message in PrintPrompt() git-svn-id: https://znc.svn.sourceforge.net/svnroot/znc/trunk@193 726aef4b-f618-498e-8847-2d620e286838 --- Utils.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Utils.cpp b/Utils.cpp index fc679a89..77c3cab2 100644 --- a/Utils.cpp +++ b/Utils.cpp @@ -229,7 +229,7 @@ void CUtils::PrintError(const string& sMessage) { } void CUtils::PrintPrompt(const string& sMessage) { - fprintf(stdout, "\033[1m\033[34m[\033[33m ?? \033[34m]\033[39m\033[22m %s:", sMessage.c_str()); + fprintf(stdout, "\033[1m\033[34m[\033[33m ?? \033[34m]\033[39m\033[22m %s: ", sMessage.c_str()); } void CUtils::PrintMessage(const string& sMessage) {