diff options
| author | Carl Hetherington <cth@carlh.net> | 2016-01-14 20:15:43 +0000 |
|---|---|---|
| committer | Carl Hetherington <cth@carlh.net> | 2020-11-23 23:26:22 +0100 |
| commit | 10f558f9b1b36a0a4e0a1356672a9b89620d5ae0 (patch) | |
| tree | dd34e036179c02113521b323c131a8d43bb9dcee /src/KM_tai.cpp | |
| parent | f12f84424744e2a7338ffd32f73178120f1f1a86 (diff) | |
Fix uninitialised variable.
Diffstat (limited to 'src/KM_tai.cpp')
| -rw-r--r-- | src/KM_tai.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/KM_tai.cpp b/src/KM_tai.cpp index 7cf363a..00a1231 100644 --- a/src/KM_tai.cpp +++ b/src/KM_tai.cpp @@ -190,6 +190,7 @@ Kumu::TAI::tai::now() ct.hour = st.wHour; ct.minute = st.wMinute; ct.second = st.wSecond; + ct.offset = 0; caltime_tai(&ct, this); #else struct timeval now; |
