aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPetr Machata <pmachata@redhat.com>2012-11-23 19:00:41 +0100
committerPetr Machata <pmachata@redhat.com>2013-03-08 22:55:25 +0100
commit7ac04edc87e07fc68f94274ba3ff0fb2a0a98958 (patch)
treec26a9d6f01bc9e2ae5e0a8e4e6784e63ca58cb23
parent8bf82d0625c5704d31961db7e0458b247300275c (diff)
downloadltrace-7ac04edc87e07fc68f94274ba3ff0fb2a0a98958.tar.gz
Clarify a parameter name in proc_each_library declaration
-rw-r--r--proc.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/proc.h b/proc.h
index 2e35319..01170f9 100644
--- a/proc.h
+++ b/proc.h
@@ -211,7 +211,8 @@ int proc_activate_delayed_symbol(struct process *proc,
/* 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),