10 Jul
2025
10 Jul
'25
11:05 a.m.
Zhiyi Zhang (@zhiyi) commented about dlls/kernel32/tests/file.c:
+} + +static void run_child_process(void) +{ + char cmdline[MAX_PATH]; + char path[MAX_PATH]; + char **argv; + PROCESS_INFORMATION pi; + STARTUPINFOA si = { 0 }; + HANDLE file; + FILETIME now; + BOOL ret; + + GetModuleFileNameA(NULL, path, MAX_PATH); + strcat(path, ".manifest"); + if(!create_manifest_file(path)) { Space after `if`. Keep the curly brace on a new line. Try not to mix different styles in one patch, even if this function is copied from elsewhere.
-- https://gitlab.winehq.org/wine/wine/-/merge_requests/7540#note_109453