From 60da2c96ddddd222994e8d25a3825fb8d7fd7ae5 Mon Sep 17 00:00:00 2001 From: Guy Harris Date: Fri, 9 Jun 2017 15:38:05 -0700 Subject: Just print the string color_filters_init() provides on an error. It gives all the necessary details; no need to mention the name of a routine the existence of which the user is probably unaware. Change-Id: I66d372bc6650c84fbbc6be438be695eff1048413 Reviewed-on: https://code.wireshark.org/review/22055 Reviewed-by: Guy Harris --- sharkd.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'sharkd.c') diff --git a/sharkd.c b/sharkd.c index 6647189248..8ca9ff328f 100644 --- a/sharkd.c +++ b/sharkd.c @@ -209,7 +209,7 @@ main(int argc, char *argv[]) read_filter_list(CFILTER_LIST); if (!color_filters_init(&err_msg, NULL)) { - fprintf(stderr, "color_filters_init() failed %s\n", err_msg); + fprintf(stderr, "%s\n", err_msg); g_free(err_msg); } -- cgit v1.2.1