summaryrefslogtreecommitdiffstats
path: root/Tests/TestDriver
diff options
context:
space:
mode:
Diffstat (limited to 'Tests/TestDriver')
-rw-r--r--Tests/TestDriver/testArgs.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/Tests/TestDriver/testArgs.h b/Tests/TestDriver/testArgs.h
index 3374417..0489366 100644
--- a/Tests/TestDriver/testArgs.h
+++ b/Tests/TestDriver/testArgs.h
@@ -1,10 +1,10 @@
void testProccessArgs(int* ac, char***av)
{
+ char** argv = *av;
if(*ac < 2)
{
return;
}
- char** argv = *av;
if(strcmp(argv[1], "--with-threads") == 0)
{
printf("number of threads is %s\n", argv[2]);