[trunk] Fix inversion in code convention
This commit is contained in:
parent
f7bc0b49cb
commit
76af73bc72
|
@ -117,7 +117,7 @@ int main(int argc, char **argv)
|
||||||
{
|
{
|
||||||
test_cmp_parameters inParam;
|
test_cmp_parameters inParam;
|
||||||
FILE *fbase=NULL, *ftest=NULL;
|
FILE *fbase=NULL, *ftest=NULL;
|
||||||
int same = 1;
|
int same = 0;
|
||||||
char lbase[256];
|
char lbase[256];
|
||||||
char strbase[256];
|
char strbase[256];
|
||||||
char ltest[256];
|
char ltest[256];
|
||||||
|
@ -169,7 +169,7 @@ int main(int argc, char **argv)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
same = 0;
|
same = 1;
|
||||||
printf("\n***** TEST SUCCEED: Files are the same. *****\n");
|
printf("\n***** TEST SUCCEED: Files are the same. *****\n");
|
||||||
cleanup:
|
cleanup:
|
||||||
/*Close File*/
|
/*Close File*/
|
||||||
|
|
Loading…
Reference in New Issue