summaryrefslogtreecommitdiff
path: root/epan/to_str.h
diff options
context:
space:
mode:
authorEvan Huus <eapache@gmail.com>2014-06-16 10:54:20 -0700
committerEvan Huus <eapache@gmail.com>2014-06-16 19:10:59 +0000
commite0aabd97d8dc70fb037f487a31268cee15aed445 (patch)
tree00a9cb378b90812ee96ed64b102a386ea3f16fad /epan/to_str.h
parent9301c5b60545ef52ac55bbf06ea0f349fba582c9 (diff)
downloadwireshark-e0aabd97d8dc70fb037f487a31268cee15aed445.tar.gz
Convert more time_to_str functions to wmem
Change-Id: Ibaae0e79935dc62f12f713f2df5b57d0f3f799b9 Reviewed-on: https://code.wireshark.org/review/2254 Reviewed-by: Evan Huus <eapache@gmail.com>
Diffstat (limited to 'epan/to_str.h')
-rw-r--r--epan/to_str.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/epan/to_str.h b/epan/to_str.h
index e05b7c0fa3..9b3880c342 100644
--- a/epan/to_str.h
+++ b/epan/to_str.h
@@ -76,7 +76,7 @@ extern gchar* tvb_vines_addr_to_str(tvbuff_t *tvb, const gint offset);
WS_DLL_PUBLIC gchar* eui64_to_str(const guint64 ad);
WS_DLL_PUBLIC gchar* tvb_eui64_to_str(tvbuff_t *tvb, const gint offset, const guint encoding);
WS_DLL_PUBLIC gchar* time_secs_to_str(wmem_allocator_t *scope, const gint32 time_val);
-gchar* time_secs_to_ep_str_unsigned(const guint32);
+gchar* time_secs_to_str_unsigned(wmem_allocator_t *scope, const guint32);
WS_DLL_PUBLIC gchar* time_msecs_to_str(wmem_allocator_t *scope, gint32 time_val);
WS_DLL_PUBLIC gchar* abs_time_to_str(wmem_allocator_t *scope, const nstime_t*, const absolute_time_display_e fmt,
gboolean show_zone);
@@ -88,7 +88,7 @@ WS_DLL_PUBLIC void display_epoch_time(gchar *, int, const time_t, gint32, const
extern void guint32_to_str_buf(guint32 u, gchar *buf, int buf_len);
WS_DLL_PUBLIC gchar* rel_time_to_str(wmem_allocator_t *scope, const nstime_t*);
-WS_DLL_PUBLIC gchar* rel_time_to_secs_ep_str(const nstime_t*);
+WS_DLL_PUBLIC gchar* rel_time_to_secs_str(wmem_allocator_t *scope, const nstime_t*);
WS_DLL_PUBLIC gchar* guid_to_ep_str(const e_guid_t*);
gchar* guid_to_str_buf(const e_guid_t*, gchar*, int);