June 2, 2026
4:56 p.m.
Paul Gofman (@gofman) commented about programs/wineboot/wineboot.c:
RegCloseKey( hkey ); }
+static void create_sqmclient_registry_key(void) +{ + HKEY hkey; + LONG r; + + r = RegCreateKeyExW(HKEY_LOCAL_MACHINE, L"Software\\Microsoft\\SQMClient", 0, NULL, 0, + KEY_ALL_ACCESS, NULL, &hkey, NULL);
Here and below, formatting: spaces around function call parameters (look at the style of the existing code in this file): \`\`\` ``` r = RegCreateKeyExW( HKEY_LOCAL_MACHINE, L"Software\\Microsoft\\SQMClient", 0, NULL, 0, KEY_ALL_ACCESS, NULL, &hkey, NULL ); ``` \`\`\` -- https://gitlab.winehq.org/wine/wine/-/merge_requests/11055#note_142010