diff options
Diffstat (limited to 'src/lib')
| -rw-r--r-- | src/lib/subrip.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/lib/subrip.cc b/src/lib/subrip.cc index aa4a0b548..9d207d528 100644 --- a/src/lib/subrip.cc +++ b/src/lib/subrip.cc @@ -138,7 +138,7 @@ SubRip::convert_time (string t) vector<string> b; boost::algorithm::split (b, a[2], boost::is_any_of (",")); r += ContentTime::from_seconds (lexical_cast<int> (b[0])); - r += ContentTime::from_seconds (lexical_cast<float> (b[1]) / 1000); + r += ContentTime::from_seconds (lexical_cast<double> (b[1]) / 1000); return r; } |
