summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMike Beattie <mike@ethernal.org>2012-03-26 22:24:05 +1300
committerMike Beattie <mike@ethernal.org>2012-03-26 22:24:05 +1300
commit770ac41cc791285614a0edc7cb262dacc9e772d8 (patch)
tree9086b633214660738a3e32301704c9e5ce488f8f
parentaddc4c9f6ee7e69ea1cfb0a543a288cc4094a8a1 (diff)
UTC offset can be signed.. duh.
Signed-off-by: Mike Beattie <mike@ethernal.org>
-rw-r--r--HouseControl.ino2
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;