aboutsummaryrefslogtreecommitdiffstats
path: root/epan/proto.c
diff options
context:
space:
mode:
Diffstat (limited to 'epan/proto.c')
-rw-r--r--epan/proto.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/epan/proto.c b/epan/proto.c
index b166ed4cb2..8f09e654bc 100644
--- a/epan/proto.c
+++ b/epan/proto.c
@@ -44,7 +44,7 @@
#include "in_cksum.h"
#include "register-int.h"
-#include <wsutil/ws_printf.h> /* ws_debug_printf/ws_g_warning */
+#include <wsutil/ws_printf.h> /* ws_debug_printf */
#include <wsutil/crash_info.h>
#ifdef HAVE_JSONGLIB
@@ -7663,7 +7663,7 @@ tmp_fld_check_assert(header_field_info *hfinfo)
so only report if different... */
if ((start_values[m].value == current->value) &&
(strcmp(start_values[m].strptr, current->strptr) != 0)) {
- ws_g_warning("Field '%s' (%s) has a conflicting entry in its"
+ g_warning("Field '%s' (%s) has a conflicting entry in its"
" value_string: %u is at indices %u (%s) and %u (%s)\n",
hfinfo->name, hfinfo->abbrev,
current->value, m, start_values[m].strptr, n, current->strptr);
@@ -10079,7 +10079,7 @@ proto_registrar_dump_values(void)
if (hfinfo->display & BASE_EXT_STRING) {
value_string_ext *vse_p = (value_string_ext *)hfinfo->strings;
if (!value_string_ext_validate(vse_p)) {
- ws_g_warning("Invalid value_string_ext ptr for: %s", hfinfo->abbrev);
+ g_warning("Invalid value_string_ext ptr for: %s", hfinfo->abbrev);
continue;
}
try_val_to_str_ext(0, vse_p); /* "prime" the extended value_string */