]> granicus.if.org Git - postgresql/commitdiff
Adjust C comments that would be wrap-able.
authorBruce Momjian <bruce@momjian.us>
Tue, 1 Oct 2013 23:44:53 +0000 (19:44 -0400)
committerBruce Momjian <bruce@momjian.us>
Tue, 1 Oct 2013 23:45:01 +0000 (19:45 -0400)
src/backend/utils/adt/datetime.c

index 7a08b9279d947cd64657a1c93423766f8e76c535..f39353f3614ab4bafcf722aa40219b7f76639e5f 100644 (file)
@@ -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))))