From 09f2659e61a0b73c05841dfe3c4da5d3311e0c92 Mon Sep 17 00:00:00 2001 From: "Gary E. Miller" Date: Fri, 5 Jun 2015 11:05:03 -0700 Subject: Fix some nits. --- timespec.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'timespec.h') diff --git a/timespec.h b/timespec.h index 5fd7fe1e..f7c7d748 100644 --- a/timespec.h +++ b/timespec.h @@ -95,7 +95,7 @@ static inline void TS_NORM( struct timespec *ts) /* convert a timespec to a double. * if tv_sec > 2, then inevitable loss of precision in tv_nsec * so best to NEVER use TSTONS() - * WARNING replacing 1e9 with NS_TO_SEC casues loss of precision */ + * WARNING replacing 1e9 with NS_IN_SEC casues loss of precision */ #define TSTONS(ts) ((double)((ts)->tv_sec + ((ts)->tv_nsec / 1e9))) #define TIMESPEC_LEN 22 /* required length of a timespec buffer */ -- cgit v1.2.1