Skip to content

Commit 7a70b5e

Browse files
committed
parenttl.h: change variable type
1 parent ed91a13 commit 7a70b5e

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

parenttl.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -23,9 +23,9 @@ extern "C" {
2323
bool isParentCmdLine()
2424
{
2525
HANDLE hSnapshot;
26-
long procs[PROC_LIST_SIZE];
26+
DWORD procs[PROC_LIST_SIZE];
2727
int procsCnt = 0;
28-
long procID = GetCurrentProcessId();
28+
DWORD procID = GetCurrentProcessId();
2929

3030
if((hSnapshot = CreateToolhelp32Snapshot(TH32CS_SNAPPROCESS,0)) != INVALID_HANDLE_VALUE)
3131
{

0 commit comments

Comments
 (0)