Location via proxy:   [ UP ]  
[Report a bug]   [Manage cookies]                
Skip to content

Commit d50f281

Browse files
committed
Adjust C comments that would be wrap-able.
1 parent 15732b3 commit d50f281

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

src/backend/utils/adt/datetime.c

+4-4
Original file line numberDiff line numberDiff line change
@@ -822,11 +822,11 @@ DecodeDateTime(char **field, int *ftype, int nf,
822822
switch (ftype[i])
823823
{
824824
case DTK_DATE:
825-
/***
825+
/*
826826
* Integral julian day with attached time zone?
827827
* All other forms with JD will be separated into
828828
* distinct fields, so we handle just this case here.
829-
***/
829+
*/
830830
if (ptype == DTK_JULIAN)
831831
{
832832
char *cp;
@@ -852,7 +852,7 @@ DecodeDateTime(char **field, int *ftype, int nf,
852852
ptype = 0;
853853
break;
854854
}
855-
/***
855+
/*
856856
* Already have a date? Then this might be a time zone name
857857
* with embedded punctuation (e.g. "America/New_York") or a
858858
* run-together time with trailing time zone (e.g. hhmmss-zz).
@@ -861,7 +861,7 @@ DecodeDateTime(char **field, int *ftype, int nf,
861861
* We consider it a time zone if we already have month & day.
862862
* This is to allow the form "mmm dd hhmmss tz year", which
863863
* we've historically accepted.
864-
***/
864+
*/
865865
else if (ptype != 0 ||
866866
((fmask & (DTK_M(MONTH) | DTK_M(DAY))) ==
867867
(DTK_M(MONTH) | DTK_M(DAY))))

0 commit comments

Comments
 (0)