aboutsummaryrefslogtreecommitdiffstats
path: root/epan/to_str.c
diff options
context:
space:
mode:
Diffstat (limited to 'epan/to_str.c')
-rw-r--r--epan/to_str.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/epan/to_str.c b/epan/to_str.c
index 6c4cecb249..e3be688c84 100644
--- a/epan/to_str.c
+++ b/epan/to_str.c
@@ -1025,11 +1025,11 @@ ip_to_str_buf(const guint8 *ad, gchar *buf, const int buf_len)
}
gchar *
-guid_to_ep_str(const e_guid_t *guid)
+guid_to_str(wmem_allocator_t *scope, const e_guid_t *guid)
{
gchar *buf;
- buf=(gchar *)ep_alloc(GUID_STR_LEN);
+ buf=(gchar *)wmem_alloc(scope, GUID_STR_LEN);
return guid_to_str_buf(guid, buf, GUID_STR_LEN);
}