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.