struct Process becomes struct process
This is for consistency with other structures, and ultimately with
Linux coding style. The typedef ("Process") was dropped as well for
this reason.
This opportunity was used to fix coding style around the impacted
lines.
diff --git a/ltrace.h b/ltrace.h
index ee7e27b..3e714a8 100644
--- a/ltrace.h
+++ b/ltrace.h
@@ -44,7 +44,7 @@
typedef struct Event Event;
struct Event {
struct Event * next;
- struct Process * proc;
+ struct process *proc;
Event_type type;
union {
int ret_val; /* EVENT_EXIT */