diff options
| author | Xin LI <delphij@FreeBSD.org> | 2020-02-10 01:33:52 +0000 |
|---|---|---|
| committer | Xin LI <delphij@FreeBSD.org> | 2020-02-10 01:33:52 +0000 |
| commit | f210d1e9efd4183d390c24c9ea576896222d4540 (patch) | |
| tree | 20232dc5e83f347242623afb7796453d2ba25e3a /tests/test.c | |
| parent | d824749b30b5c69e76ef1eb0d13e6a6270853d32 (diff) | |
Diffstat (limited to 'tests/test.c')
| -rw-r--r-- | tests/test.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/test.c b/tests/test.c index 330a357b3d4c2..502522f9d12ce 100644 --- a/tests/test.c +++ b/tests/test.c @@ -102,10 +102,10 @@ main(int argc, char **argv) desired = slurp(fp, &desired_len); fclose(fp); (void)printf("%s: %s\n", argv[1], result); - if (strcmp(result, desired) != 0) { + if (strcmp(result, desired) != 0) { (void)fprintf(stderr, "Error: result was\n%s\nexpected:\n%s\n", result, desired); return 1; - } + } } } } |
