We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 81c6433 commit e2bda44Copy full SHA for e2bda44
libmseed.h
@@ -186,11 +186,11 @@ typedef int64_t nstime_t;
186
187
/** @def MS_EPOCH2NSTIME
188
@brief macro to convert Unix/POSIX epoch time to high precision epoch time */
189
-#define MS_EPOCH2NSTIME(X) ((X) * (nstime_t) NSTMODULUS)
+#define MS_EPOCH2NSTIME(X) (X) * (nstime_t) NSTMODULUS
190
191
/** @def MS_NSTIME2EPOCH
192
@brief Macro to convert high precision epoch time to Unix/POSIX epoch time */
193
-#define MS_NSTIME2EPOCH(X) ((X) / NSTMODULUS)
+#define MS_NSTIME2EPOCH(X) (X) / NSTMODULUS
194
195
/** @enum ms_timeformat_t
196
@brief Time format identifiers
0 commit comments