We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ce0bac2 commit ae9e85bCopy full SHA for ae9e85b
contrib/win-installer/podman-msihooks/check.c
@@ -3,7 +3,7 @@
3
4
BOOL isWSLEnabled();
5
BOOL isHyperVEnabled();
6
-LPCWSTR boolToNStr(BOOL bool);
+LPCWSTR boolToNStr(BOOL value);
7
LPCSTR szSvcNameHyperv = TEXT("vmms");
8
9
/**
@@ -43,8 +43,8 @@ LPCSTR szSvcNameHyperv = TEXT("vmms");
43
return 0;
44
}
45
46
-LPCWSTR boolToNStr(BOOL bool) {
47
- return bool ? L"1" : L"0";
+LPCWSTR boolToNStr(BOOL value) {
+ return value ? L"1" : L"0";
48
49
50
BOOL isWSLEnabled() {
0 commit comments