[trunk] Fix inversion in code convention

This commit is contained in:
Mathieu Malaterre 2014-03-10 10:43:45 +00:00
parent f7bc0b49cb
commit 76af73bc72
1 changed files with 2 additions and 2 deletions

View File

@ -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*/