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 Pekka Paalanen
parent 58d6d3afcc
commit a4b36d70eb

View file

@ -139,7 +139,7 @@ uppercase_dup(const char *src)
static void static void
desc_dump(char *src, int startcol) 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 */ /* Strip leading space */
for (i = 0; isspace(src[i]); i++) for (i = 0; isspace(src[i]); i++)