From: DRC Date: Thu, 11 May 2017 23:33:47 +0000 (-0500) Subject: TJBench: Code formatting tweaks X-Git-Tag: 1.5.2~6 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=6a2b06742818e7d505738f35b9b589a958f98f0a;p=libjpeg-turbo TJBench: Code formatting tweaks Spaces-->tab + remove stray control character that was introduced in 95e4cb206085c3a715f0f017c174fdf367a2c1ff --- diff --git a/tjbench.c b/tjbench.c index 626788b..12b4efe 100644 --- a/tjbench.c +++ b/tjbench.c @@ -40,7 +40,7 @@ #define _throw(op, err) { \ printf("ERROR in line %d while %s:\n%s\n", __LINE__, op, err); \ - retval=-1; goto bailout;} + retval=-1; goto bailout;} #define _throwunix(m) _throw(m, strerror(errno)) #define _throwtj(m) _throw(m, tjGetErrorStr()) #define _throwbmp(m) _throw(m, bmpgeterr()) @@ -207,7 +207,7 @@ int decomp(unsigned char *srcbuf, unsigned char **jpegbuf, (double)(w*h)/1000000.*(double)iter/elapsed); if(doyuv) { - printf("YUV Decode --> Frame rate:  %f fps\n", + printf("YUV Decode --> Frame rate: %f fps\n", (double)iter/elapsedDecode); printf(" Throughput: %f Megapixels/sec\n", (double)(w*h)/1000000.*(double)iter/elapsedDecode);