Skip to content

Commit

Permalink
Apply suggestions from code review
Browse files Browse the repository at this point in the history
Styling changes to make it consistent with other funcs

Co-authored-by: Andrew Murray <3112309+radarhere@users.noreply.github.com>
  • Loading branch information
kkopachev and radarhere authored May 27, 2020
1 parent 0f35e9b commit a60afc5
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/libImaging/Unpack.c
Original file line number Diff line number Diff line change
Expand Up @@ -1299,8 +1299,8 @@ band216B(UINT8* out, const UINT8* in, int pixels)
static void
band316B(UINT8* out, const UINT8* in, int pixels)
{
/* band 3 only, big endian */
int i;
/* band 3 only, big endian */
for (i = 0; i < pixels; i++) {
out[3] = in[0];
out += 4; in += 2;
Expand Down Expand Up @@ -1343,8 +1343,8 @@ band216L(UINT8* out, const UINT8* in, int pixels)
static void
band316L(UINT8* out, const UINT8* in, int pixels)
{
/* band 3 only, little endian */
int i;
/* band 3 only, little endian */
for (i = 0; i < pixels; i++) {
out[3] = in[1];
out += 4; in += 2;
Expand Down

0 comments on commit a60afc5

Please sign in to comment.