diff options
| author | Carl Hetherington <cth@carlh.net> | 2016-01-14 20:15:43 +0000 |
|---|---|---|
| committer | Carl Hetherington <cth@carlh.net> | 2019-12-03 16:44:40 +0100 |
| commit | cdbaa0726a1e81eda21296149120c9a971704de0 (patch) | |
| tree | 4321388fd5ef1760f44fa5de6d12a256fd896132 /src/KM_tai.cpp | |
| parent | 17fddfc7f5693c0ecd786d902e8f91d727416891 (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; |
