setupapi/tests: Remove unused variable.

This commit is contained in:
Austin English 2010-07-21 02:27:18 -05:00 committed by Alexandre Julliard
parent cdf091f2c9
commit f7f38c5def
1 changed files with 2 additions and 2 deletions

View File

@ -406,7 +406,7 @@ static const char *check_key( INFCONTEXT *context, const char *wanted )
static void test_key_names(void)
{
char buffer[MAX_INF_STRING_LENGTH+32];
const char *key, *line;
const char *line;
unsigned int i, index, count;
UINT err_line;
HINF hinf;
@ -426,7 +426,7 @@ static void test_key_names(void)
ret = SetupFindFirstLineA( hinf, "Test", 0, &context );
assert( ret );
key = check_key( &context, key_names[i].key );
check_key( &context, key_names[i].key );
buffer[0] = buffer[1] = 0; /* build the full line */
for (index = 0; ; index++)