aboutsummaryrefslogtreecommitdiffstats
path: root/epan/dissectors/packet-wai.c
diff options
context:
space:
mode:
Diffstat (limited to 'epan/dissectors/packet-wai.c')
-rw-r--r--epan/dissectors/packet-wai.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/epan/dissectors/packet-wai.c b/epan/dissectors/packet-wai.c
index 2bcd2dfeea..a50b5b7797 100644
--- a/epan/dissectors/packet-wai.c
+++ b/epan/dissectors/packet-wai.c
@@ -512,7 +512,7 @@ dissect_identity_list(tvbuff_t *tvb, guint offset, proto_tree *tree)
for(i=0; i < no_of_ids; i++) {
gchar number[4] = {0};
- g_snprintf(number, 4, "%d", i);
+ snprintf(number, 4, "%d", i);
offset += dissect_identity(tvb, offset, id_list_tree, number);
}