Skip to content

Commit d33caf4

Browse files
Slavko-Pslouken
authored andcommitted
Remove (int > uint) comparison warning in stb_vorbis.h
1 parent ede9524 commit d33caf4

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/codecs/stb_vorbis/stb_vorbis.h

+1-1
Original file line numberDiff line numberDiff line change
@@ -5518,7 +5518,7 @@ static int fixup_current_playback_loc(stb_vorbis *f, int n)
55185518

55195519
f->current_playback_loc += n;
55205520
lgs = stb_vorbis_stream_length_in_samples(f);
5521-
if (f->current_playback_loc > lgs && lgs > 0 && lgs != SAMPLE_unknown) {
5521+
if (f->current_playback_loc > (int)lgs && lgs > 0 && lgs != SAMPLE_unknown) {
55225522
int r = n - (f->current_playback_loc - (int)lgs);
55235523
f->current_playback_loc = lgs;
55245524
return r;

0 commit comments

Comments
 (0)