From: Eric Sesterhenn Date: Sat, 19 Aug 2006 17:37:57 +0000 (+0200) Subject: [PATCH] Signedness issue in drivers/net/3c515.c X-Git-Tag: v2.6.18-rc5~61^2~4 X-Git-Url: http://git.openpandora.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=cb958186ed543d1a4f074ceb1c783fe8b0908437;p=pandora-kernel.git [PATCH] Signedness issue in drivers/net/3c515.c while playing with gcc 4.1 -Wextra warnings, I came across this one: drivers/net/3c515.c:1027: warning: comparison of unsigned expression >= 0 is always true Since i is unsigned the >= 0 check in the for loop is always true, so we might spin there forever unless the if condition triggers. Since i is only used in this loop, this patch changes it to an integer. Signed-off-by: Eric Sesterhenn Signed-off-by: Jeff Garzik --- Reading git-diff-tree failed