OSDN Git Service

Put parens around macro arguments for safety per D'Arcy's suggestion.
authorThomas G. Lockhart <lockhart@fourpalms.org>
Tue, 3 Jun 1997 14:07:24 +0000 (14:07 +0000)
committerThomas G. Lockhart <lockhart@fourpalms.org>
Tue, 3 Jun 1997 14:07:24 +0000 (14:07 +0000)
src/include/utils/dt.h

index b2c18a9..20979b3 100644 (file)
@@ -8,7 +8,7 @@
  *
  * Copyright (c) 1994, Regents of the University of California
  *
- * $Id: dt.h,v 1.9 1997/05/23 05:10:03 thomas Exp $
+ * $Id: dt.h,v 1.10 1997/06/03 14:07:24 thomas Exp $
  *
  *-------------------------------------------------------------------------
  */
@@ -173,7 +173,7 @@ typedef struct {
  * Bit mask definitions for time parsing.
  */
 
-#define DTK_M(t)       (0x01 << t)
+#define DTK_M(t)       (0x01 << (t))
 
 #define DTK_DATE_M     (DTK_M(YEAR) | DTK_M(MONTH) | DTK_M(DAY))
 #define DTK_TIME_M     (DTK_M(HOUR) | DTK_M(MINUTE) | DTK_M(SECOND))
@@ -241,7 +241,7 @@ typedef struct {
 #define TIMESPAN_NOT_FINITE(j) TIMESPAN_IS_INVALID(j)
 
 #define TIME_PREC 1e-6
-#define JROUND(j) (rint(((double) j)/TIME_PREC)*TIME_PREC)
+#define JROUND(j) (rint(((double) (j))/TIME_PREC)*TIME_PREC)
 
 /*
  * dt.c prototypes