diff options
author | Arnaud Charlet <charlet@gcc.gnu.org> | 2009-08-17 11:52:27 +0200 |
---|---|---|
committer | Arnaud Charlet <charlet@gcc.gnu.org> | 2009-08-17 11:52:27 +0200 |
commit | 1def9494aca2a532697db5738b260fcdf030e86b (patch) | |
tree | 3152464b0472a4f20ce1ccd470de55c862949126 /gcc/ada/sysdep.c | |
parent | 579fab006fdfb1ad425c0ebad6c35fef4ead6b0a (diff) | |
download | gcc-1def9494aca2a532697db5738b260fcdf030e86b.zip gcc-1def9494aca2a532697db5738b260fcdf030e86b.tar.gz gcc-1def9494aca2a532697db5738b260fcdf030e86b.tar.bz2 |
[multiple changes]
2009-08-17 Thomas Quinot <quinot@adacore.com>
* tbuild.adb: Minor reformatting
2009-08-17 Hristian Kirtchev <kirtchev@adacore.com>
* sysdep.c (__gnat_localtime_tzoff): Complete previous change.
From-SVN: r150830
Diffstat (limited to 'gcc/ada/sysdep.c')
-rw-r--r-- | gcc/ada/sysdep.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gcc/ada/sysdep.c b/gcc/ada/sysdep.c index 6019fd9..608246e 100644 --- a/gcc/ada/sysdep.c +++ b/gcc/ada/sysdep.c @@ -913,7 +913,7 @@ __gnat_localtime_tzoff (const time_t *timer, long *off) /* Correct the offset if Daylight Saving Time is in effect */ if (tp.tm_isdst > 0) - *off = *off - 3600; + *off = *off + 3600; } (*Unlock_Task) (); |