OpenJDK / bsd-port / bsd-port / hotspot
changeset 609:f9f563e85d74
. Commit a build fix for a botched merge that I had neglected to commit
prior to the last push. This should unbreak the build.
author | glewis@misty.eyesbeyond.com |
---|---|
date | Fri, 06 Mar 2009 22:52:15 -0800 |
parents | e2d7c985e556 |
children | c793aa9bb2a9 |
files | src/share/vm/runtime/os.cpp |
diffstat | 1 files changed, 1 insertions(+), 1 deletions(-) [+] |
line wrap: on
line diff
--- a/src/share/vm/runtime/os.cpp Sun Mar 01 18:26:25 2009 -0800 +++ b/src/share/vm/runtime/os.cpp Fri Mar 06 22:52:15 2009 -0800 @@ -80,7 +80,7 @@ return NULL; } #if defined(_ALLBSD_SOURCE) - const time_t zone = (time_t) time_struct_temp->tm_gmtoff; + const time_t zone = (time_t) time_struct.tm_gmtoff; #else const time_t zone = timezone; #endif