aboutsummaryrefslogtreecommitdiffstats
path: root/epan/wslua/wslua_util.c
diff options
context:
space:
mode:
Diffstat (limited to 'epan/wslua/wslua_util.c')
-rw-r--r--epan/wslua/wslua_util.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/epan/wslua/wslua_util.c b/epan/wslua/wslua_util.c
index 8e4c2afb44..ce927d47f1 100644
--- a/epan/wslua/wslua_util.c
+++ b/epan/wslua/wslua_util.c
@@ -492,13 +492,13 @@ static void statcmd_init(const char *opt_arg, void* userdata) {
case 0:
break;
case LUA_ERRRUN:
- g_warning("Runtime error while calling statcmd callback");
+ ws_warning("Runtime error while calling statcmd callback");
break;
case LUA_ERRMEM:
- g_warning("Memory alloc error while calling statcmd callback");
+ ws_warning("Memory alloc error while calling statcmd callback");
break;
case LUA_ERRERR:
- g_warning("Error while running the error handler function for statcmd callback");
+ ws_warning("Error while running the error handler function for statcmd callback");
break;
default:
ws_assert_not_reached();