diff options
Diffstat (limited to 'plugins/NewXstatusNotify/main.cpp')
-rw-r--r-- | plugins/NewXstatusNotify/main.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/plugins/NewXstatusNotify/main.cpp b/plugins/NewXstatusNotify/main.cpp index 8559d52cbf..b631bafc93 100644 --- a/plugins/NewXstatusNotify/main.cpp +++ b/plugins/NewXstatusNotify/main.cpp @@ -467,7 +467,7 @@ TCHAR* AddCR(const TCHAR *statusmsg) { else {
break;
}
- if(j == 0 || *(statusmsg + j - 1) != _T('\r')){
+ if(j == 0 || *(statusmsg + j - 1) != _T('\r')) {
tmp = lstrcat(tmp, _T("\r"));
}
tmp = lstrcat(tmp, _T("\n"));
|