minor fix for c tests

This commit is contained in:
Ken Martin 2002-07-31 11:08:42 -04:00
parent 1538956b7f
commit 836a280a6a
1 changed files with 1 additions and 1 deletions

View File

@ -1,10 +1,10 @@
void testProccessArgs(int* ac, char***av) void testProccessArgs(int* ac, char***av)
{ {
char** argv = *av;
if(*ac < 2) if(*ac < 2)
{ {
return; return;
} }
char** argv = *av;
if(strcmp(argv[1], "--with-threads") == 0) if(strcmp(argv[1], "--with-threads") == 0)
{ {
printf("number of threads is %s\n", argv[2]); printf("number of threads is %s\n", argv[2]);