diff options
| author | Mathieu Malaterre <mathieu.malaterre@gmail.com> | 2014-03-10 10:43:45 +0000 |
|---|---|---|
| committer | Mathieu Malaterre <mathieu.malaterre@gmail.com> | 2014-03-10 10:43:45 +0000 |
| commit | 76af73bc7257ce09ff35c32439bc7714c4164a4a (patch) | |
| tree | ea81a3d548d7ddac19adfbc1440d7a378e72f0e9 | |
| parent | f7bc0b49cbdd68e2c16f623d7c6617ded6ace0bf (diff) | |
[trunk] Fix inversion in code convention
| -rw-r--r-- | tests/compare_dump_files.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/compare_dump_files.c b/tests/compare_dump_files.c index 10245339..946c92a5 100644 --- a/tests/compare_dump_files.c +++ b/tests/compare_dump_files.c @@ -117,7 +117,7 @@ int main(int argc, char **argv) { test_cmp_parameters inParam; FILE *fbase=NULL, *ftest=NULL; - int same = 1; + int same = 0; char lbase[256]; char strbase[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"); cleanup: /*Close File*/ |
