@@ -260,7 +260,7 @@ DecodeInterval(char **field, int *ftype, int nf, int *dtype, struct tm *tm, fsec
260260#ifdef HAVE_INT64_TIMESTAMP
261261* fsec += ((fval - sec )* 1000000 );
262262#else
263- * fsec += ( fval - sec ) ;
263+ * fsec += fval - sec ;
264264#endif
265265}
266266tmask = DTK_M (MINUTE );
@@ -278,7 +278,7 @@ DecodeInterval(char **field, int *ftype, int nf, int *dtype, struct tm *tm, fsec
278278#ifdef HAVE_INT64_TIMESTAMP
279279* fsec += (fval - sec )* 1000000 ;
280280#else
281- * fsec += ( fval - sec ) ;
281+ * fsec += fval - sec ;
282282#endif
283283}
284284tmask = DTK_M (HOUR );
@@ -296,7 +296,7 @@ DecodeInterval(char **field, int *ftype, int nf, int *dtype, struct tm *tm, fsec
296296#ifdef HAVE_INT64_TIMESTAMP
297297* fsec += (fval - sec )* 1000000 ;
298298#else
299- * fsec += ( fval - sec ) ;
299+ * fsec += fval - sec ;
300300#endif
301301}
302302tmask = (fmask & DTK_M (DAY )) ?0 :DTK_M (DAY );
@@ -314,7 +314,7 @@ DecodeInterval(char **field, int *ftype, int nf, int *dtype, struct tm *tm, fsec
314314#ifdef HAVE_INT64_TIMESTAMP
315315* fsec += (fval - sec )* 1000000 ;
316316#else
317- * fsec += ( fval - sec ) ;
317+ * fsec += fval - sec ;
318318#endif
319319}
320320tmask = (fmask & DTK_M (DAY )) ?0 :DTK_M (DAY );
@@ -332,7 +332,7 @@ DecodeInterval(char **field, int *ftype, int nf, int *dtype, struct tm *tm, fsec
332332#ifdef HAVE_INT64_TIMESTAMP
333333* fsec += (fval - sec )* 1000000 ;
334334#else
335- * fsec += ( fval - sec ) ;
335+ * fsec += fval - sec ;
336336#endif
337337}
338338tmask = DTK_M (MONTH );
@@ -413,8 +413,8 @@ DecodeInterval(char **field, int *ftype, int nf, int *dtype, struct tm *tm, fsec
413413int sec ;
414414
415415#ifdef HAVE_INT64_TIMESTAMP
416- sec = ( * fsec /USECS_PER_SEC ) ;
417- * fsec -= ( sec * USECS_PER_SEC ) ;
416+ sec = * fsec /USECS_PER_SEC ;
417+ * fsec -= sec * USECS_PER_SEC ;
418418#else
419419TMODULO (* fsec ,sec ,1.0 );
420420#endif
@@ -693,14 +693,14 @@ interval2tm(interval span, struct tm *tm, fsec_t *fsec)
693693time = span .time ;
694694
695695#ifdef HAVE_INT64_TIMESTAMP
696- tm -> tm_mday = ( time /USECS_PER_DAY ) ;
697- time -= ( tm -> tm_mday * USECS_PER_DAY ) ;
698- tm -> tm_hour = ( time /USECS_PER_HOUR ) ;
699- time -= ( tm -> tm_hour * USECS_PER_HOUR ) ;
700- tm -> tm_min = ( time /USECS_PER_MINUTE ) ;
701- time -= ( tm -> tm_min * USECS_PER_MINUTE ) ;
702- tm -> tm_sec = ( time /USECS_PER_SEC ) ;
703- * fsec = ( time - (tm -> tm_sec * USECS_PER_SEC ) );
696+ tm -> tm_mday = time /USECS_PER_DAY ;
697+ time -= tm -> tm_mday * USECS_PER_DAY ;
698+ tm -> tm_hour = time /USECS_PER_HOUR ;
699+ time -= tm -> tm_hour * USECS_PER_HOUR ;
700+ tm -> tm_min = time /USECS_PER_MINUTE ;
701+ time -= tm -> tm_min * USECS_PER_MINUTE ;
702+ tm -> tm_sec = time /USECS_PER_SEC ;
703+ * fsec = time - (tm -> tm_sec * USECS_PER_SEC );
704704#else
705705TMODULO (time ,tm -> tm_mday , (double )SECS_PER_DAY );
706706TMODULO (time ,tm -> tm_hour , (double )SECS_PER_HOUR );