Description: Fix FTBFS during build against boo1t1.67
Author: Anton Gladky <gladk@debian.org>
Bug-Debian: https://bugs.debian.org/914145
Last-Update: 2018-12-09

--- liborigin2-20110117.orig/Origin750Parser.h
+++ liborigin2-20110117/Origin750Parser.h
@@ -71,7 +71,7 @@ protected:
 
 	inline boost::posix_time::ptime doubleToPosixTime(double jdt)
 	{
-		return boost::posix_time::ptime(boost::gregorian::date(boost::gregorian::gregorian_calendar::from_julian_day_number(jdt+1)), boost::posix_time::seconds((jdt-(int)jdt)*86400));
+		return boost::posix_time::ptime(boost::gregorian::date(boost::gregorian::gregorian_calendar::from_julian_day_number(jdt+1)), boost::posix_time::seconds(static_cast<long>(jdt-(int)jdt)*86400));
 	}
 
 	unsigned int objectIndex;
