Skip to content

Commit

Permalink
fixing issue jhjaggars#1
Browse files Browse the repository at this point in the history
  • Loading branch information
Jesse Jaggars authored and Jesse Jaggars committed Nov 10, 2009
1 parent a8a398e commit c67d3fa
Show file tree
Hide file tree
Showing 3 changed files with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion NTP.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ unsigned long NTP::get_unix_gmt()
unsigned long NTP::get_unix_tz(int offset)
{
unsigned long t = get_unix_gmt();
return t + (offset * 60 * 60);
return t + (offset * 3600UL);
}

int NTP::get_leap_indicator(byte b)
Expand Down
File renamed without changes.
File renamed without changes.

0 comments on commit c67d3fa

Please sign in to comment.