From 581c75f44cc4d14ca5bb85a100bdfbb6da69cdb2 Mon Sep 17 00:00:00 2001 From: DRC Date: Mon, 10 Mar 2014 21:37:54 +0000 Subject: [PATCH] Formatting tweaks git-svn-id: svn+ssh://svn.code.sf.net/p/libjpeg-turbo/code/branches/1.3.x@1146 632fc199-4ca6-4c93-a231-07263d6284db --- turbojpeg.c | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/turbojpeg.c b/turbojpeg.c index 664bb47e..ea710c94 100644 --- a/turbojpeg.c +++ b/turbojpeg.c @@ -531,7 +531,6 @@ DLLEXPORT unsigned long DLLCALL tjBufSize(int width, int height, return retval; } - DLLEXPORT unsigned long DLLCALL TJBUFSIZE(int width, int height) { unsigned long retval=0; @@ -983,7 +982,7 @@ DLLEXPORT int DLLCALL tjDecompress2(tjhandle handle, unsigned char *jpegBuf, scaledw=TJSCALED(jpegwidth, sf[i]); scaledh=TJSCALED(jpegheight, sf[i]); if(scaledw<=width && scaledh<=height) - break; + break; } if(scaledw>width || scaledh>height) _throw("tjDecompress2(): Could not scale down to desired image dimensions");