From: Dan Carpenter Date: Tue, 23 Oct 2012 08:40:12 +0000 (+0300) Subject: debug: fix cut and paste bug in print X-Git-Tag: 1.57~208 X-Git-Url: https://repo.or.cz/w/smatch.git/commitdiff_plain/9690bb214709e4e167640d721bb320331cca0e32 debug: fix cut and paste bug in print Signed-off-by: Dan Carpenter --- diff --git a/check_debug.c b/check_debug.c index 180bc61c..04214a0e 100644 --- a/check_debug.c +++ b/check_debug.c @@ -102,7 +102,7 @@ static void match_print_absolute_min(const char *fn, struct expression *expr, vo val = whole_range.min; name = get_variable_from_expr_complex(arg, NULL); - sm_msg("implied min: %s = %lld", name, val); + sm_msg("absolute min: %s = %lld", name, val); free_string(name); } @@ -117,7 +117,7 @@ static void match_print_absolute_max(const char *fn, struct expression *expr, vo val = whole_range.max; name = get_variable_from_expr_complex(arg, NULL); - sm_msg("implied max: %s = %lld", name, val); + sm_msg("absolute max: %s = %lld", name, val); free_string(name); }