X-Git-Url: https://pintos-os.org/cgi-bin/gitweb.cgi?a=blobdiff_plain;f=lib%2Fprocess.c;h=a5f83b46ed6da26505c19f117373698b96aba9c5;hb=d530fcd2425c2443c1a1c093903b6932c4c5814c;hp=377c396b90cab6871860cf91f8d92a9c9e089a9f;hpb=2a022368f4b37559de5d5621a88c648023493f75;p=openvswitch diff --git a/lib/process.c b/lib/process.c index 377c396b..a5f83b46 100644 --- a/lib/process.c +++ b/lib/process.c @@ -34,7 +34,7 @@ #include "util.h" #include "vlog.h" -VLOG_DEFINE_THIS_MODULE(process) +VLOG_DEFINE_THIS_MODULE(process); struct process { struct list node; @@ -590,7 +590,7 @@ sigchld_handler(int signr OVS_UNUSED) struct process *p; COVERAGE_INC(process_sigchld); - LIST_FOR_EACH (p, struct process, node, &all_processes) { + LIST_FOR_EACH (p, node, &all_processes) { if (!p->exited) { int retval, status; do {