summaryrefslogtreecommitdiff
path: root/src/KM_util.cpp
diff options
context:
space:
mode:
authormsheby <msheby@cinecert.com>2008-02-01 00:42:18 +0000
committermsheby <>2008-02-01 00:42:18 +0000
commit3e1ee0a500bd0b513db4bdf18a9cb052f42404d4 (patch)
tree4788b1c75799823d902501c0b21f80d8ec2c59fb /src/KM_util.cpp
parentbc0f567deda4c1f06d8910bc5ccd65ffc72b7b34 (diff)
Commit a bunch of portability fixes (64- vs. 32-bit types).
Diffstat (limited to 'src/KM_util.cpp')
-rwxr-xr-xsrc/KM_util.cpp2
1 files changed, 1 insertions, 1 deletions
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));
}
}