Clarify a parameter name in proc_each_library declaration
diff --git a/proc.h b/proc.h
index 2e35319..01170f9 100644
--- a/proc.h
+++ b/proc.h
@@ -211,7 +211,8 @@
/* Iterate through the libraries of PROC. See callback.h for notes on
* iteration interfaces. */
-struct library *proc_each_library(struct process *proc, struct library *start,
+struct library *proc_each_library(struct process *proc,
+ struct library *start_after,
enum callback_status (*cb)(struct process *p,
struct library *l,
void *data),