CID: 1294483 no need to check if an unsigned variable is less than 0

This commit is contained in:
William King 2015-04-16 11:37:34 -07:00 committed by Michael Jerris
parent f09dad317f
commit 4f468b14e9
1 changed files with 1 additions and 1 deletions

View File

@ -350,7 +350,7 @@ static void scv_tag(void *buffer, int w, int x, int y, uint8_t n)
int i = 0, j=0;
uint8_t *p = buffer;
if (n < 0 || n > 13) return;
if (n > 13) return;
for(i=0; i<8; i++) {
for (j=0; j<16; j++) {