aboutsummaryrefslogtreecommitdiff
path: root/output.c
diff options
context:
space:
mode:
authorJuan Cespedes <cespedes@debian.org>2009-05-07 11:09:00 +0200
committerJuan Cespedes <cespedes@debian.org>2009-05-07 11:09:00 +0200
commitcde582642f959f69d436d435b504f50470af5db9 (patch)
tree7ab45d70eef18d85c6d1ab6a14ed0222ea0dec49 /output.c
parent1dec217e47f998c03c642561d98753c32683985c (diff)
downloadltrace-cde582642f959f69d436d435b504f50470af5db9.tar.gz
struct function -> Function
Diffstat (limited to 'output.c')
-rw-r--r--output.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/output.c b/output.c
index 70fbd15..792a922 100644
--- a/output.c
+++ b/output.c
@@ -102,9 +102,9 @@ begin_of_line(enum tof type, Process *proc) {
}
}
-static struct function *
+static Function *
name2func(char *name) {
- struct function *tmp;
+ Function *tmp;
const char *str1, *str2;
tmp = list_of_functions;
@@ -161,7 +161,7 @@ tabto(int col) {
void
output_left(enum tof type, Process *proc, char *function_name) {
- struct function *func;
+ Function *func;
static arg_type_info *arg_unknown = NULL;
if (arg_unknown == NULL)
arg_unknown = lookup_prototype(ARGTYPE_UNKNOWN);
@@ -218,7 +218,7 @@ output_left(enum tof type, Process *proc, char *function_name) {
void
output_right(enum tof type, Process *proc, char *function_name) {
- struct function *func = name2func(function_name);
+ Function *func = name2func(function_name);
static arg_type_info *arg_unknown = NULL;
if (arg_unknown == NULL)
arg_unknown = lookup_prototype(ARGTYPE_UNKNOWN);