Skip to content

Commit

Permalink
minor fix which stopped the build
Browse files Browse the repository at this point in the history
  • Loading branch information
elidwa committed Nov 20, 2024
1 parent d22e4b9 commit 456d222
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/arrow/ArrowSamplerImpl.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -293,7 +293,7 @@ void ArrowSamplerImpl::getPoints(std::vector<point_info_t>& points)
/* Convert unix nanoseconds to gps seconds */
for(int64_t i = 0; i < time_column->length(); i++)
{
double unix_nsecs = time_column->Value(i);
const double unix_nsecs = time_column->Value(i);
points[i].gps = TimeLib::sys2gpstime(unix_nsecs / 1000.0) * 1000.0;
}
}
Expand Down

0 comments on commit 456d222

Please sign in to comment.