From: Bruce Momjian Date: Tue, 1 Oct 2013 23:44:53 +0000 (-0400) Subject: Adjust C comments that would be wrap-able. X-Git-Tag: REL9_4_BETA1~1116 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=d50f2812108af287879c72b8cc5856d7db5b72b6;p=postgresql Adjust C comments that would be wrap-able. --- diff --git a/src/backend/utils/adt/datetime.c b/src/backend/utils/adt/datetime.c index 7a08b9279d..f39353f361 100644 --- a/src/backend/utils/adt/datetime.c +++ b/src/backend/utils/adt/datetime.c @@ -822,11 +822,11 @@ DecodeDateTime(char **field, int *ftype, int nf, switch (ftype[i]) { case DTK_DATE: - /*** + /* * Integral julian day with attached time zone? * All other forms with JD will be separated into * distinct fields, so we handle just this case here. - ***/ + */ if (ptype == DTK_JULIAN) { char *cp; @@ -852,7 +852,7 @@ DecodeDateTime(char **field, int *ftype, int nf, ptype = 0; break; } - /*** + /* * Already have a date? Then this might be a time zone name * with embedded punctuation (e.g. "America/New_York") or a * run-together time with trailing time zone (e.g. hhmmss-zz). @@ -861,7 +861,7 @@ DecodeDateTime(char **field, int *ftype, int nf, * We consider it a time zone if we already have month & day. * This is to allow the form "mmm dd hhmmss tz year", which * we've historically accepted. - ***/ + */ else if (ptype != 0 || ((fmask & (DTK_M(MONTH) | DTK_M(DAY))) == (DTK_M(MONTH) | DTK_M(DAY))))