summaryrefslogtreecommitdiff
path: root/epan/to_str.h
diff options
context:
space:
mode:
authorRonnie Sahlberg <ronnie_sahlberg@ozemail.com.au>2005-04-12 19:59:08 +0000
committerRonnie Sahlberg <ronnie_sahlberg@ozemail.com.au>2005-04-12 19:59:08 +0000
commit83f14e4614a04eb3d646c4b987b73f6cbaa1a346 (patch)
treee6fea1af410ebaa0b08fe4d5117f482348266f42 /epan/to_str.h
parent06ef0a3b5234f99d64ff11819b5182d3fb12dd78 (diff)
downloadwireshark-83f14e4614a04eb3d646c4b987b73f6cbaa1a346.tar.gz
change time_secs_to_str() and time_msecs_to_str() to take a signed integer as parameter so we can handle negtive times
svn path=/trunk/; revision=14055
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 5ae35be692..e2db7f4d8c 100644
--- a/epan/to_str.h
+++ b/epan/to_str.h
@@ -60,8 +60,8 @@ extern gchar* ipxnet_to_string(const guint8 *ad);
extern gchar* ipxnet_to_str_punct(const guint32 ad, char punct);
extern gchar* vines_addr_to_str(const guint8 *addrp);
extern void vines_addr_to_str_buf(const guint8 *addrp, gchar *buf);
-extern gchar* time_secs_to_str(guint32);
-extern gchar* time_msecs_to_str(guint32);
+extern gchar* time_secs_to_str(gint32);
+extern gchar* time_msecs_to_str(gint32);
extern gchar* abs_time_to_str(nstime_t*);
extern gchar* abs_time_secs_to_str(time_t);
extern void display_signed_time(gchar *, int, gint32, gint32, time_res_t);