diff options
author | Mike Beattie <mike@ethernal.org> | 2012-03-26 22:24:05 +1300 |
---|---|---|
committer | Mike Beattie <mike@ethernal.org> | 2012-03-26 22:24:05 +1300 |
commit | 770ac41cc791285614a0edc7cb262dacc9e772d8 (patch) | |
tree | 9086b633214660738a3e32301704c9e5ce488f8f /HouseControl.ino | |
parent | addc4c9f6ee7e69ea1cfb0a543a288cc4094a8a1 (diff) |
UTC offset can be signed.. duh.
Signed-off-by: Mike Beattie <mike@ethernal.org>
Diffstat (limited to 'HouseControl.ino')
-rw-r--r-- | HouseControl.ino | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/HouseControl.ino b/HouseControl.ino index 75aec42..38172d6 100644 --- a/HouseControl.ino +++ b/HouseControl.ino @@ -46,7 +46,7 @@ struct st_config { byte def_gateway[4]; byte ntpServer[4]; - unsigned int UTC_offset; + int UTC_offset; byte notifyHost[4]; unsigned int notifyPort; |