Skip to content

Commit ce204f4

Browse files
committed
lint
1 parent 6bf791a commit ce204f4

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

src/libImaging/Storage.c

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -737,7 +737,7 @@ ImagingNewArrow(
737737
return im;
738738
}
739739
}
740-
// Stored as [[r,g,b,a],....]
740+
// Stored as [[r,g,b,a],...]
741741
if (strcmp(schema->format, "+w:4") == 0 // 4 up array
742742
&& im->pixelsize == 4 // storage as 32 bpc
743743
&& schema->n_children > 0 // make sure schema is well formed.
@@ -753,7 +753,7 @@ ImagingNewArrow(
753753
return im;
754754
}
755755
}
756-
// Stored as [r,g,b,a,r,g,b,a....]
756+
// Stored as [r,g,b,a,r,g,b,a,...]
757757
if (strcmp(schema->format, "C") == 0 // uint8
758758
&& im->pixelsize == 4 // storage as 32 bpc
759759
&& schema->n_children == 0 // make sure schema is well formed.

0 commit comments

Comments
 (0)