diff options
| author | Philippe Verdy <verdy_p@php.net> | 1999-08-28 17:01:32 +0000 |
|---|---|---|
| committer | Philippe Verdy <verdy_p@php.net> | 1999-08-28 17:01:32 +0000 |
| commit | ce6db81dceb1c8340c0c8f22967b14629f6b7c48 (patch) | |
| tree | 2349da56b13e615d0f6793c2ce2c64d5d1d20233 | |
| parent | 1dcee0c8407955fb572b1910bad7f71a8d1d1ac1 (diff) | |
| download | php-git-ce6db81dceb1c8340c0c8f22967b14629f6b7c48.tar.gz | |
semicolon syntax error
| -rw-r--r-- | ext/standard/datetime.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ext/standard/datetime.c b/ext/standard/datetime.c index 5035defc79..0cb3aacbdb 100644 --- a/ext/standard/datetime.c +++ b/ext/standard/datetime.c @@ -106,7 +106,7 @@ void _php3_mktime(INTERNAL_FUNCTION_PARAMETERS, int gm) tn = localtime(&t); memcpy(&ta, tn, sizeof(struct tm)); if (gm) { - ta.tm_isdst = 0 /* force winter time if UTC flag is true */ + ta.tm_isdst = 0; /* force winter time if UTC flag is true */ /* unless the UTC flag is specified after GMT date parameters. */ } else { |
