Skip to content
Snippets Groups Projects
Commit e5acf27d authored by Ruud Overeem's avatar Ruud Overeem
Browse files

Bug 1486: Ambigious call due to extension made in TimeStamp.c

parent ff290bc0
No related branches found
No related tags found
No related merge requests found
......@@ -79,7 +79,7 @@ void Beam::_resolveGaps()
while (iter != end) {
// is there a gap between the last endtime and the current begintime add a NIL pointing
if (iter->time() > endTime) {
Pointing nilPointing(0.0 ,0.0, "NONE", endTime, int(iter->time()-endTime));
Pointing nilPointing(0.0 ,0.0, "NONE", endTime, int(iter->time()-endTime.sec()));
itsPointings.insert(iter, nilPointing);
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment