fix: nullptr -> NULL, we are in C

This commit is contained in:
Paul Pan 2023-12-28 01:10:14 +08:00
parent 02547b124d
commit c50d6d83e9

View File

@ -137,7 +137,7 @@ void launch_child2() {
setup_all();
execve(config[CFG_PROGRAM], args, nullptr);
execve(config[CFG_PROGRAM], args, NULL);
}
void dump_info(FILE *dest, struct rusage *usage, int status, long long time_usage) {