re-constify

develop
Myk Taylor 2023-06-17 10:46:56 -07:00
parent 9dba18124e
commit 2efef75b4e
No known key found for this signature in database
GPG Key ID: 8A39CA0FA0C16E78
1 changed files with 1 additions and 1 deletions

@ -108,7 +108,7 @@ static bool is_running_on_wine() {
return !!pwine_get_version;
}
static DWORD findProcess(LPWSTR name) {
static DWORD findProcess(const LPWSTR name) {
PROCESSENTRY32W entry;
entry.dwSize = sizeof(PROCESSENTRY32W);