Skip to content

Commit 09497c1

Browse files
committed
Additional code formatting tweaks
Missed by previous analysis
1 parent 84fbd4f commit 09497c1

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

jcmarker.c

+1-1
Original file line numberDiff line numberDiff line change
@@ -260,7 +260,7 @@ emit_dac(j_compress_ptr cinfo)
260260
for (i = 0; i < NUM_ARITH_TBLS; i++) {
261261
if (dc_in_use[i]) {
262262
emit_byte(cinfo, i);
263-
emit_byte(cinfo, cinfo->arith_dc_L[i] + (cinfo->arith_dc_U[i]<<4));
263+
emit_byte(cinfo, cinfo->arith_dc_L[i] + (cinfo->arith_dc_U[i] << 4));
264264
}
265265
if (ac_in_use[i]) {
266266
emit_byte(cinfo, i + 0x10);

win/jconfig.h.in

+2-2
Original file line numberDiff line numberDiff line change
@@ -21,10 +21,10 @@
2121
#undef __CHAR_UNSIGNED__
2222

2323
/* Define "boolean" as unsigned char, not int, per Windows custom */
24-
#ifndef __RPCNDR_H__ /* don't conflict if rpcndr.h already read */
24+
#ifndef __RPCNDR_H__ /* don't conflict if rpcndr.h already read */
2525
typedef unsigned char boolean;
2626
#endif
27-
#define HAVE_BOOLEAN /* prevent jmorecfg.h from redefining it */
27+
#define HAVE_BOOLEAN /* prevent jmorecfg.h from redefining it */
2828

2929
/* Define "INT32" as int, not long, per Windows custom */
3030
#if !(defined(_BASETSD_H_) || defined(_BASETSD_H)) /* don't conflict if basetsd.h already read */

0 commit comments

Comments
 (0)