From a1d3d44c1af5b7001ea35059bce58a30c9528acb Mon Sep 17 00:00:00 2001 From: Dan Carpenter Date: Tue, 25 Feb 2014 17:18:20 +0300 Subject: [PATCH] states: rename __print_cur_slist() to __print_cur_stree() Signed-off-by: Dan Carpenter --- check_debug.c | 2 +- smatch.h | 2 +- smatch_states.c | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/check_debug.c b/check_debug.c index 8a0319cf..3dec89b4 100644 --- a/check_debug.c +++ b/check_debug.c @@ -33,7 +33,7 @@ static void match_all_values(const char *fn, struct expression *expr, void *info static void match_cur_slist(const char *fn, struct expression *expr, void *info) { - __print_cur_slist(); + __print_cur_stree(); } static void match_state(const char *fn, struct expression *expr, void *info) diff --git a/smatch.h b/smatch.h index ff817b55..490bcca6 100644 --- a/smatch.h +++ b/smatch.h @@ -526,7 +526,7 @@ void __discard_conditions(void); void __save_gotos(const char *name); void __merge_gotos(const char *name); -void __print_cur_slist(void); +void __print_cur_stree(void); /* smatch_hooks.c */ void __pass_to_client(void *data, enum hook_type type); diff --git a/smatch_states.c b/smatch_states.c index dc84c96d..687443f9 100644 --- a/smatch_states.c +++ b/smatch_states.c @@ -66,7 +66,7 @@ static struct ptr_list *backup; int option_debug; -void __print_cur_slist(void) +void __print_cur_stree(void) { __print_stree(cur_stree); } -- 2.11.4.GIT