Skip to content

Commit 90e5a93

Browse files
committed
v0.29.1: final code cleaning
1 parent 27c19cc commit 90e5a93

File tree

2 files changed

+8
-1
lines changed

2 files changed

+8
-1
lines changed

.gitignore

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1 +1,8 @@
1+
/.vs/
2+
/Intermediate/
3+
/Debug-Win32/
4+
/Debug-x64/
5+
/Release-Win32/
6+
/Release-x64/
7+
18
*.vcxproj.user

ScanFile.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -292,7 +292,7 @@ bool CScanFile::LockFreecInit()
292292
};
293293

294294
unsigned threadID = 0;
295-
this->_hThread = reinterpret_cast<HANDLE>(_beginthreadex(NULL, 0, threadProc, this, 0, &threadID));
295+
this->_hThread = reinterpret_cast<HANDLE>(_beginthreadex(nullptr, 0, threadProc, this, 0, &threadID));
296296
if (this->_hThread == nullptr)
297297
{
298298
return false;

0 commit comments

Comments
 (0)