aboutsummaryrefslogtreecommitdiffstats
path: root/epan/nstime.h
diff options
context:
space:
mode:
authorStig Bjørlykke <stig@bjorlykke.org>2008-06-23 20:04:31 +0000
committerStig Bjørlykke <stig@bjorlykke.org>2008-06-23 20:04:31 +0000
commit926e31da26dfdadd557fc8fd113cd8145b22caed (patch)
tree3da9eaaa5bce8b4e0a1cffb3ee21b6c50e6544eb /epan/nstime.h
parent98a15b7e8005a362f7dba2ee02a5c738203993e1 (diff)
Don't call an argument "time", as this is a function.
svn path=/trunk/; revision=25538
Diffstat (limited to 'epan/nstime.h')
-rw-r--r--epan/nstime.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/epan/nstime.h b/epan/nstime.h
index ea97ea5924..af80797373 100644
--- a/epan/nstime.h
+++ b/epan/nstime.h
@@ -81,12 +81,12 @@ extern void nstime_sum(nstime_t *sum, const nstime_t *b, const nstime_t *a );
extern int nstime_cmp(nstime_t *a, const nstime_t *b );
/* converts nstime to double, time base is milli seconds */
-extern double nstime_to_msec(const nstime_t *time);
+extern double nstime_to_msec(const nstime_t *nstime);
/* converts nstime to double, time base is seconds */
-extern double nstime_to_sec(const nstime_t *time);
+extern double nstime_to_sec(const nstime_t *nstime);
/* converts wtap_nstime to double, time base is seconds */
-extern double wtap_nstime_to_sec(const struct wtap_nstime *time);
+extern double wtap_nstime_to_sec(const struct wtap_nstime *nstime);
#endif /* __NSTIME_H__ */