From 3e1ee0a500bd0b513db4bdf18a9cb052f42404d4 Mon Sep 17 00:00:00 2001 From: msheby Date: Fri, 1 Feb 2008 00:42:18 +0000 Subject: Commit a bunch of portability fixes (64- vs. 32-bit types). --- src/KM_util.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/KM_util.cpp') diff --git a/src/KM_util.cpp b/src/KM_util.cpp index d1e82e1..0f8976a 100755 --- a/src/KM_util.cpp +++ b/src/KM_util.cpp @@ -931,7 +931,7 @@ Kumu::Timestamp::DecodeString(const char* datestr) return false; else - AddHours( (datestr[19] == '-' ? (-TZ_hh) : TZ_hh)); + AddHours( (datestr[19] == '-' ? (0 - TZ_hh) : TZ_hh)); } } -- cgit v1.2.3