Skip to content

Commit

Permalink
fix copy-and-paste error in gps_get_date()
Browse files Browse the repository at this point in the history
  • Loading branch information
srl295 committed Aug 8, 2015
1 parent 45533ac commit 11e8b53
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/hw/l_hw.c
Original file line number Diff line number Diff line change
Expand Up @@ -732,7 +732,7 @@ static int l_gps_get_time(lua_State* L) {
}

static int l_gps_get_date(lua_State* L) {
double r = gps_get_time();
double r = gps_get_date();
lua_pushnumber(L, r);
return 1;
}
Expand Down

0 comments on commit 11e8b53

Please sign in to comment.