Skip to content

Commit 76e0c6b

Browse files
committed
Fix merge bug
1 parent 38c71d9 commit 76e0c6b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Src/Generic/Util.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2660,7 +2660,7 @@ StrUni DirectoryFinder::FwRootCodeDir()
26602660
if (!stuResult.Length())
26612661
{
26622662
wchar_t modulePath[MAX_PATH];
2663-
dwT = ::GetModuleFileName(NULL, modulePath, MAX_PATH);
2663+
DWORD dwT = ::GetModuleFileName(NULL, modulePath, MAX_PATH);
26642664
if (dwT > 0)
26652665
{
26662666
wchar_t * lastSlash = wcsrchr(modulePath, L'\\');

0 commit comments

Comments
 (0)