summaryrefslogtreecommitdiff
path: root/src/backend/utils/adt/datetime.c
diff options
context:
space:
mode:
authorBruce Momjian <bruce@momjian.us>2013-10-01 19:44:53 -0400
committerBruce Momjian <bruce@momjian.us>2013-10-01 19:45:01 -0400
commitd50f2812108af287879c72b8cc5856d7db5b72b6 (patch)
treef1ef81fbc94ae273914afaf0cffd8449f132f916 /src/backend/utils/adt/datetime.c
parent15732b34e8c856bf94469b78ab49446430a9c203 (diff)
downloadpostgresql-d50f2812108af287879c72b8cc5856d7db5b72b6.tar.gz
Adjust C comments that would be wrap-able.
Diffstat (limited to 'src/backend/utils/adt/datetime.c')
-rw-r--r--src/backend/utils/adt/datetime.c8
1 files changed, 4 insertions, 4 deletions
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))))