aboutsummaryrefslogtreecommitdiffstats
path: root/sharkd.c
diff options
context:
space:
mode:
authorGuy Harris <guy@alum.mit.edu>2017-06-09 15:38:05 -0700
committerGuy Harris <guy@alum.mit.edu>2017-06-09 22:38:35 +0000
commit60da2c96ddddd222994e8d25a3825fb8d7fd7ae5 (patch)
treefa7c36de0bf0a196737ea861eaae3dcded56be3a /sharkd.c
parentad4e81fcf869680b057651970fba38690e82c87d (diff)
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 <guy@alum.mit.edu>
Diffstat (limited to 'sharkd.c')
-rw-r--r--sharkd.c2
1 files changed, 1 insertions, 1 deletions
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);
}