From e5acf27dabc2fa00e154f4ddd3d12a33dfdc8877 Mon Sep 17 00:00:00 2001 From: Ruud Overeem <overeem@astron.nl> Date: Thu, 7 Oct 2010 11:11:30 +0000 Subject: [PATCH] Bug 1486: Ambigious call due to extension made in TimeStamp.c --- MAC/APL/PAC/ITRFBeamServer/src/Beam.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/MAC/APL/PAC/ITRFBeamServer/src/Beam.cc b/MAC/APL/PAC/ITRFBeamServer/src/Beam.cc index 49a20a6d99d..9d5918669e5 100644 --- a/MAC/APL/PAC/ITRFBeamServer/src/Beam.cc +++ b/MAC/APL/PAC/ITRFBeamServer/src/Beam.cc @@ -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); } -- GitLab