Skip to content
Snippets Groups Projects
Commit 25324dce authored by Chad Hanna's avatar Chad Hanna
Browse files

fixed 10 digit gps bug

parent 6420c691
No related branches found
No related tags found
No related merge requests found
......@@ -800,8 +800,8 @@ static GstFlowReturn chain(GstPad *pad, GstBuffer *buf)
*/
if(!element->injection_document) {
LIGOTimeGPS start = {-999999999, 0};
LIGOTimeGPS end = {+999999999, 0};
LIGOTimeGPS start = {-2000000000, 0};
LIGOTimeGPS end = {+2000000000, 0};
/* earliest and latest possible LIGOTimeGPS */
/* FIXME: hard-coded = BAD BAD BAD */
/*XLALINT8NSToGPS(&start, (INT8) 1 << 63);
......
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