From 38edae1c718f690281958ff43d1154abc1c96247 Mon Sep 17 00:00:00 2001 From: Jakub Zawadzki Date: Sat, 9 Nov 2013 10:38:02 +0000 Subject: Replace wtap_nstime with nstime_t, remove wtap_nstime_to_sec. After r50154 nstime_t is inside wsutil/ so wiretap don't need it's own copy. svn path=/trunk/; revision=53184 --- wsutil/nstime.c | 10 ---------- 1 file changed, 10 deletions(-) (limited to 'wsutil/nstime.c') diff --git a/wsutil/nstime.c b/wsutil/nstime.c index e88818856a..4c93bc16e7 100644 --- a/wsutil/nstime.c +++ b/wsutil/nstime.c @@ -177,16 +177,6 @@ double nstime_to_sec(const nstime_t *nstime) return ((double)nstime->secs + (double)nstime->nsecs/1000000000); } -/* - * function: wtap_nstime_to_sec - * converts wtap_nstime to double, time base is seconds - */ - -double wtap_nstime_to_sec(const struct wtap_nstime *nstime) -{ - return ((double)nstime->secs + (double)nstime->nsecs/1000000000); -} - /* * Editor modelines * -- cgit v1.2.1