summaryrefslogtreecommitdiff
path: root/plugins/wimax
diff options
context:
space:
mode:
authorPascal Quantin <pascal.quantin@gmail.com>2013-09-17 21:34:05 +0000
committerPascal Quantin <pascal.quantin@gmail.com>2013-09-17 21:34:05 +0000
commit953c6fed13a771f58dda635859d12732ea6a6129 (patch)
tree17db6431957a80b6d6c76364068b6c8591e71a11 /plugins/wimax
parentaf15a51a6bdb1004ed2d1304106b0a8d24987615 (diff)
downloadwireshark-953c6fed13a771f58dda635859d12732ea6a6129.tar.gz
emem -> wmem
svn path=/trunk/; revision=52130
Diffstat (limited to 'plugins/wimax')
-rw-r--r--plugins/wimax/packet-wmx.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/plugins/wimax/packet-wmx.c b/plugins/wimax/packet-wmx.c
index 76c37b24d0..15a3ae6d49 100644
--- a/plugins/wimax/packet-wmx.c
+++ b/plugins/wimax/packet-wmx.c
@@ -35,7 +35,7 @@
#include <epan/packet.h>
#include <epan/prefs.h>
#include <epan/address.h>
-#include <epan/emem.h>
+#include <epan/wmem/wmem.h>
#include "wimax_tlv.h"
#include "wimax_bits.h"
@@ -738,7 +738,7 @@ proto_tree *add_protocol_subtree(tlv_info_t *self, gint idx, proto_tree *tree, i
/* display the TLV name and display the value in hex. Highlight type, length, and value. */
va_start(ap, format);
- message = se_strdup_vprintf(format, ap);
+ message = wmem_strdup_vprintf(wmem_packet_scope(), format, ap);
va_end(ap);
tlv_item = proto_tree_add_protocol_format(tree, hfindex, tvb, start, length, "%s", message);