[KERNEL32] GetPriorityClass(): Return explicit 0, not FALSE (match return type) (#3170)

This commit is contained in:
Serge Gautherie
2020-09-12 21:38:06 +02:00
committed by GitHub
parent 25458c7775
commit 4aeb45ce0c

View File

@@ -1683,7 +1683,7 @@ GetPriorityClass(IN HANDLE hProcess)
/* Failure path */
BaseSetLastNTError(Status);
return FALSE;
return 0;
}
/*