scanner: Remove unused variable 'len'

scanner.c: In function ‘desc_dump’:
scanner.c:142:42: warning: unused variable ‘len’ [-Wunused-variable]

Signed-off-by: Peter Hutterer <peter.hutterer@who-t.net>
This commit is contained in:
Peter Hutterer 2012-02-23 15:55:40 +10:00 committed by Kristian Høgsberg
parent 0b54a1442a
commit a8c9e82c49

View file

@ -139,7 +139,7 @@ uppercase_dup(const char *src)
static void
desc_dump(char *src, int startcol)
{
int i, j = 0, col = startcol, line = 0, len;
int i, j = 0, col = startcol, line = 0;
/* Strip leading space */
for (i = 0; isspace(src[i]); i++)