Skip to content

Commit

Permalink
Additional code formatting tweaks
Browse files Browse the repository at this point in the history
Missed by previous analysis
  • Loading branch information
dcommander committed Mar 17, 2018
1 parent 84fbd4f commit 09497c1
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion jcmarker.c
Original file line number Diff line number Diff line change
Expand Up @@ -260,7 +260,7 @@ emit_dac(j_compress_ptr cinfo)
for (i = 0; i < NUM_ARITH_TBLS; i++) {
if (dc_in_use[i]) {
emit_byte(cinfo, i);
emit_byte(cinfo, cinfo->arith_dc_L[i] + (cinfo->arith_dc_U[i]<<4));
emit_byte(cinfo, cinfo->arith_dc_L[i] + (cinfo->arith_dc_U[i] << 4));
}
if (ac_in_use[i]) {
emit_byte(cinfo, i + 0x10);
Expand Down
4 changes: 2 additions & 2 deletions win/jconfig.h.in
Original file line number Diff line number Diff line change
Expand Up @@ -21,10 +21,10 @@
#undef __CHAR_UNSIGNED__

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

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

0 comments on commit 09497c1

Please sign in to comment.