minor changes

git-svn-id: https://svn.code.sf.net/p/nsis/code/NSIS/trunk@1742 212acab6-be3b-0410-9dea-997c60f758d6
This commit is contained in:
rainwater 2002-11-15 19:17:15 +00:00
parent a28a854112
commit 7e7f202432
4 changed files with 8 additions and 8 deletions

View file

@ -69,7 +69,7 @@ void LogMessage(HWND hwnd,const char *str) {
void ErrorMessage(HWND hwnd,const char *str) {
if (!str) return;
char buf[1028];
wsprintf(buf,"Error - %s\r\n",str);
wsprintf(buf,"[Error] %s\r\n",str);
LogMessage(hwnd,buf);
}