Use Abs() macro to replace ? :.

This commit is contained in:
Bruce Momjian 2005-05-26 16:44:05 +00:00
parent f35d493d16
commit 1b3bb23cc8

View File

@ -508,7 +508,7 @@ EncodeInterval(struct tm * tm, fsec_t fsec, int style, char *str)
#ifdef HAVE_INT64_TIMESTAMP
sprintf(cp, ":%02d", abs(tm->tm_sec));
cp += strlen(cp);
sprintf(cp, ".%06d", (fsec >= 0) ? fsec : -(fsec));
sprintf(cp, ".%06d", Abs(fsec));
#else
fsec += tm->tm_sec;
sprintf(cp, ":%013.10f", fabs(fsec));