diff options
author | John Stebbins <[email protected]> | 2015-12-26 17:45:37 -0700 |
---|---|---|
committer | John Stebbins <[email protected]> | 2015-12-26 17:46:15 -0700 |
commit | 4e396c75f8e310a90c86d7f540d33261e70cb7c1 (patch) | |
tree | 84d9184a55d9b835dda3c46dfe80cd3102f604db /libhb/decssasub.c | |
parent | 62fba0145cf1e1f4167ab713632c85815911cb59 (diff) |
libhb: use LL for int64 constants to make mingw happy
Diffstat (limited to 'libhb/decssasub.c')
-rw-r--r-- | libhb/decssasub.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/libhb/decssasub.c b/libhb/decssasub.c index 0f6ac042b..4eb190082 100644 --- a/libhb/decssasub.c +++ b/libhb/decssasub.c @@ -41,10 +41,10 @@ struct hb_work_private_s }; #define SSA_2_HB_TIME(hr,min,sec,centi) \ - ( 90L * ( hr * 1000L * 60 * 60 +\ - min * 1000L * 60 +\ - sec * 1000L +\ - centi * 10L ) ) + ( 90LL * ( hr * 1000LL * 60 * 60 +\ + min * 1000LL * 60 +\ + sec * 1000LL +\ + centi * 10LL ) ) #define SSA_VERBOSE_PACKETS 0 |