From 72b0f2b68ea52e73f1b1a48e146d897b77090617 Mon Sep 17 00:00:00 2001 From: DRC Date: Tue, 15 Feb 2011 21:57:50 +0000 Subject: [PATCH] General code cleanup git-svn-id: svn+ssh://svn.code.sf.net/p/libjpeg-turbo/code/trunk@369 632fc199-4ca6-4c93-a231-07263d6284db --- jpgtest.c | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/jpgtest.c b/jpgtest.c index 362ade96..0d860147 100644 --- a/jpgtest.c +++ b/jpgtest.c @@ -380,8 +380,7 @@ void dodecomptest(char *filename) temp=strrchr(filename, '.'); if(temp!=NULL) *temp='\0'; - if((hnd=tjInitDecompress())==NULL) - _throwtj("executing tjInitDecompress()"); + if((hnd=tjInitDecompress())==NULL) _throwtj("executing tjInitDecompress()"); if(tjDecompressHeader2(hnd, jpegbuf, jpgbufsize, &w, &h, &jpegsub)==-1) _throwtj("executing tjDecompressHeader2()"); if(tjDestroy(hnd)==-1) _throwtj("executing tjDestroy()");