diff options
author | George Hazan <george.hazan@gmail.com> | 2012-07-18 21:37:39 +0000 |
---|---|---|
committer | George Hazan <george.hazan@gmail.com> | 2012-07-18 21:37:39 +0000 |
commit | 0a46be5b99fe49b8f4616a88459381133d6c9b5f (patch) | |
tree | ade0f4bb63087f5cd01c6b00a53e2a461e2b1ae2 /src/core/stdfile/fileexistsdlg.cpp | |
parent | 02413392a2b40fcebe5f178c776402a9ce148604 (diff) |
code cleaning
git-svn-id: http://svn.miranda-ng.org/main/trunk@1028 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'src/core/stdfile/fileexistsdlg.cpp')
-rw-r--r-- | src/core/stdfile/fileexistsdlg.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/core/stdfile/fileexistsdlg.cpp b/src/core/stdfile/fileexistsdlg.cpp index c0592c8b39..5a66611237 100644 --- a/src/core/stdfile/fileexistsdlg.cpp +++ b/src/core/stdfile/fileexistsdlg.cpp @@ -248,7 +248,7 @@ INT_PTR CALLBACK DlgProcFileExists(HWND hwndDlg, UINT msg, WPARAM wParam, LPARAM {
TCHAR szFile[MAX_PATH];
lstrcpyn(szFile, fts->tszCurrentFile, SIZEOF(szFile));
- TCHAR* pszLastBackslash = _tcsrchr(szFile, '\\');
+ TCHAR *pszLastBackslash = _tcsrchr(szFile, '\\');
if (pszLastBackslash)
*pszLastBackslash = '\0';
ShellExecute(hwndDlg, NULL, szFile, NULL, NULL, SW_SHOW);
|