diff options
Diffstat (limited to 'plugins/Variables/options.cpp')
-rw-r--r-- | plugins/Variables/options.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/plugins/Variables/options.cpp b/plugins/Variables/options.cpp index 3ccbbd987f..e94e27fcdf 100644 --- a/plugins/Variables/options.cpp +++ b/plugins/Variables/options.cpp @@ -88,7 +88,7 @@ static INT_PTR CALLBACK SetOptsDlgProc(HWND hwndDlg,UINT msg,WPARAM wParam,LPARA if (((LPNMHDR)lParam)->code == PSN_APPLY) {
int len = SendDlgItemMessage(hwndDlg, IDC_FORMATTEXT, WM_GETTEXTLENGTH, 0, 0);
if (len >= 0) {
- TCHAR *szFormatText = ( TCHAR* )mir_calloc((len+1)* sizeof(TCHAR));
+ TCHAR *szFormatText = (TCHAR*)mir_calloc((len+1)* sizeof(TCHAR));
if (szFormatText == NULL)
break;
|