Skip to content

Commit 01ca85a

Browse files
committed
Fix warning (var assigned to itself)
1 parent 4b520e8 commit 01ca85a

File tree

1 file changed

+0
-1
lines changed

1 file changed

+0
-1
lines changed

Other Sources/stb_image.c

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1735,7 +1735,6 @@ static uint8 *resample_row_generic(uint8 *out, uint8 *in_near, uint8 *in_far, in
17351735
{
17361736
// resample with nearest-neighbor
17371737
int i,j;
1738-
in_far = in_far;
17391738
for (i=0; i < w; ++i)
17401739
for (j=0; j < hs; ++j)
17411740
out[i*hs+j] = in_near[i];

0 commit comments

Comments
 (0)