Make trailing comma usage consistent

This commit is contained in:
gingerBill
2021-03-13 21:18:07 +00:00
parent 8123ff83a3
commit a60d22fefd
6 changed files with 25 additions and 26 deletions
+9 -9
View File
@@ -10,14 +10,14 @@ call_external_process :: proc(program, command_line: string) -> bool {
return cast(bool)create_process_w(
utf8_to_wstring(program),
utf8_to_wstring(command_line),
nil,
nil,
Bool(false),
u32(0x10),
nil,
nil,
&si,
&pi
nil,
nil,
Bool(false),
u32(0x10),
nil,
nil,
&si,
&pi,
);
}
@@ -26,4 +26,4 @@ open_website :: proc(url: string) -> bool {
arg := []string{"/C", "start", url};
args := strings.join(arg, " ", context.temp_allocator);
return call_external_process(p, args);
}
}