diff options
author | Yang Li <[email protected]> | 2021-02-08 18:41:10 +0800 |
---|---|---|
committer | Michael Ellerman <[email protected]> | 2021-04-23 01:38:04 +1000 |
commit | 0db11461677aa5105b9ebbd939aee0ceb77a988b (patch) | |
tree | 1c9720ce3bd65a8faee6180957182cdf536876c3 | |
parent | caea7b833d866e0badf4b12dc41bf9fe6a7295f3 (diff) |
selftests/powerpc: remove unneeded semicolon
Eliminate the following coccicheck warning:
./tools/testing/selftests/powerpc/nx-gzip/gzfht_test.c:327:4-5: Unneeded
semicolon
Reported-by: Abaci Robot <[email protected]>
Signed-off-by: Yang Li <[email protected]>
Signed-off-by: Michael Ellerman <[email protected]>
Link: https://lore.kernel.org/r/[email protected]
-rw-r--r-- | tools/testing/selftests/powerpc/nx-gzip/gzfht_test.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/testing/selftests/powerpc/nx-gzip/gzfht_test.c b/tools/testing/selftests/powerpc/nx-gzip/gzfht_test.c index 02dffb65de48..b099753b50e4 100644 --- a/tools/testing/selftests/powerpc/nx-gzip/gzfht_test.c +++ b/tools/testing/selftests/powerpc/nx-gzip/gzfht_test.c @@ -324,7 +324,7 @@ int compress_file(int argc, char **argv, void *handle) fprintf(stderr, "error: cannot progress; "); fprintf(stderr, "too many faults\n"); exit(-1); - }; + } } fault_tries = NX_MAX_FAULTS; /* Reset for the next chunk */ |