diff options
| author | Matthias P. Braendli <matthias.braendli@mpb.li> | 2020-10-04 09:59:15 +0200 |
|---|---|---|
| committer | Matthias P. Braendli <matthias.braendli@mpb.li> | 2020-10-04 09:59:15 +0200 |
| commit | a0ccf32157a48c291b02bf8d1de0b25b06768cbc (patch) | |
| tree | 4d236850758418d0dbcbd9cb9db244ec0cf6fcb9 /src/common/Core | |
| parent | 10f83102061c3d7d0d6a506c3feb149ef067eb0e (diff) | |
| download | glutte-o-matic-a0ccf32157a48c291b02bf8d1de0b25b06768cbc.tar.gz glutte-o-matic-a0ccf32157a48c291b02bf8d1de0b25b06768cbc.tar.bz2 glutte-o-matic-a0ccf32157a48c291b02bf8d1de0b25b06768cbc.zip | |
Always initialise tm_isdst to 0
Diffstat (limited to 'src/common/Core')
| -rw-r--r-- | src/common/Core/common.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/common/Core/common.c b/src/common/Core/common.c index 7e19eaf..41d3fac 100644 --- a/src/common/Core/common.c +++ b/src/common/Core/common.c @@ -123,7 +123,7 @@ static int is_dst(const struct tm *time) { } int local_time(struct tm *time) { - const int local_time_offset=1; // hours + const int local_time_offset = 1; // hours int num_sv_used = 0; int valid = gps_utctime(time, &num_sv_used); |
