summaryrefslogtreecommitdiff
path: root/vcl/source/filter/jpeg/transupp.c
diff options
context:
space:
mode:
Diffstat (limited to 'vcl/source/filter/jpeg/transupp.c')
-rw-r--r--vcl/source/filter/jpeg/transupp.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/vcl/source/filter/jpeg/transupp.c b/vcl/source/filter/jpeg/transupp.c
index 7e72c21719ac..58f2219f790a 100644
--- a/vcl/source/filter/jpeg/transupp.c
+++ b/vcl/source/filter/jpeg/transupp.c
@@ -30,7 +30,7 @@ jdiv_round_up (long a, long b)
/* Compute a/b rounded up to next integer, ie, ceil(a/b) */
/* Assumes a >= 0, b > 0 */
{
- return (a + b - 1L) / b;
+ return (a + b - 1) / b;
}
#if JPEG_LIB_VERSION >= 70