summaryrefslogtreecommitdiff
path: root/trunk/jutils.c
diff options
context:
space:
mode:
authordcommander <dcommander@3789f03b-4d11-0410-bbf8-ca57d06f2519>2010-02-26 23:01:19 +0000
committerdcommander <dcommander@3789f03b-4d11-0410-bbf8-ca57d06f2519>2010-02-26 23:01:19 +0000
commit8d4fce78704504b9aa007f98686dd35671375b39 (patch)
tree73eb225ec765e4b8c71da90393d872bd22fa1c35 /trunk/jutils.c
parent448694b9239d181fe2113a3c85e5d1e15d21d037 (diff)
Bleepin' Windows uses LLP64, not LP64
git-svn-id: https://libjpeg-turbo.svn.sourceforge.net/svnroot/libjpeg-turbo@158 3789f03b-4d11-0410-bbf8-ca57d06f2519
Diffstat (limited to 'trunk/jutils.c')
-rw-r--r--trunk/jutils.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/trunk/jutils.c b/trunk/jutils.c
index d18a955..98b54f5 100644
--- a/trunk/jutils.c
+++ b/trunk/jutils.c
@@ -77,8 +77,8 @@ jdiv_round_up (long a, long b)
}
-GLOBAL(long)
-jround_up (long a, long b)
+GLOBAL(size_t)
+jround_up (size_t a, size_t b)
/* Compute a rounded up to next multiple of b, ie, ceil(a/b)*b */
/* Assumes a >= 0, b > 0 */
{