Merge branch 'clang-warnings' into release

This commit is contained in:
Brad King 2014-04-02 09:38:23 -04:00
commit b783b99f8a
1 changed files with 1 additions and 2 deletions

View File

@ -58,7 +58,7 @@ static char* lowercase(const char *string)
int main(int ac, char *av[]) int main(int ac, char *av[])
{ {
int i, NumTests, testNum, partial_match; int i, NumTests, testNum = 0, partial_match;
char *arg, *test_name; char *arg, *test_name;
int count; int count;
int testToRun = -1; int testToRun = -1;
@ -81,7 +81,6 @@ int main(int ac, char *av[])
} }
printf("To run a test, enter the test number: "); printf("To run a test, enter the test number: ");
fflush(stdout); fflush(stdout);
testNum = 0;
if( scanf("%d", &testNum) != 1 ) if( scanf("%d", &testNum) != 1 )
{ {
printf("Couldn't parse that input as a number\n"); printf("Couldn't parse that input as a number\n");