From: Bruce Momjian Date: Fri, 7 Oct 2005 20:13:16 +0000 (+0000) Subject: Add spaces around operator. X-Git-Url: http://waps.l3s.uni-hannover.de/gitweb/?a=commitdiff_plain;h=76cbd48894f153ef3144b8acfa95fcc14f2bf77d;p=users%2Fbernd%2Fpostgres.git Add spaces around operator. --- diff --git a/src/include/utils/timestamp.h b/src/include/utils/timestamp.h index 30aaba4a24..b7cede65e3 100644 --- a/src/include/utils/timestamp.h +++ b/src/include/utils/timestamp.h @@ -164,7 +164,7 @@ typedef int32 fsec_t; typedef double fsec_t; #define TIME_PREC_INV 1000000.0 -#define JROUND(j) (rint(((double) (j))*TIME_PREC_INV)/TIME_PREC_INV) +#define JROUND(j) (rint(((double) (j)) * TIME_PREC_INV) / TIME_PREC_INV) #endif #define TIMESTAMP_MASK(b) (1 << (b))