From: Eisuke Kawashima Date: Fri, 26 Sep 2025 10:38:01 +0000 (+0900) Subject: fix: remove extra ';' outside of functions X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=refs%2Fpull%2F2741%2Fhead;p=thirdparty%2Flibarchive.git fix: remove extra ';' outside of functions --- diff --git a/test_utils/test_main.c b/test_utils/test_main.c index 486985355..f4d443060 100644 --- a/test_utils/test_main.c +++ b/test_utils/test_main.c @@ -2548,52 +2548,52 @@ canRunCommand(const char *cmd, int *tested) /* * Can this platform run the bzip2 program? */ -CAN_RUN_FUNC(Bzip2, "bzip2 --help"); +CAN_RUN_FUNC(Bzip2, "bzip2 --help") /* * Can this platform run the grzip program? */ -CAN_RUN_FUNC(Grzip, "grzip -V"); +CAN_RUN_FUNC(Grzip, "grzip -V") /* * Can this platform run the gzip program? */ -CAN_RUN_FUNC(Gzip, "gzip --help"); +CAN_RUN_FUNC(Gzip, "gzip --help") /* * Can this platform run the lrzip program? */ -CAN_RUN_FUNC(Lrzip, "lrzip -V"); +CAN_RUN_FUNC(Lrzip, "lrzip -V") /* * Can this platform run the lz4 program? */ -CAN_RUN_FUNC(Lz4, "lz4 --help"); +CAN_RUN_FUNC(Lz4, "lz4 --help") /* * Can this platform run the zstd program? */ -CAN_RUN_FUNC(Zstd, "zstd --help"); +CAN_RUN_FUNC(Zstd, "zstd --help") /* * Can this platform run the lzip program? */ -CAN_RUN_FUNC(Lzip, "lzip --help"); +CAN_RUN_FUNC(Lzip, "lzip --help") /* * Can this platform run the lzma program? */ -CAN_RUN_FUNC(Lzma, "lzma --help"); +CAN_RUN_FUNC(Lzma, "lzma --help") /* * Can this platform run the lzop program? */ -CAN_RUN_FUNC(Lzop, "lzop --help"); +CAN_RUN_FUNC(Lzop, "lzop --help") /* * Can this platform run the xz program? */ -CAN_RUN_FUNC(Xz, "xz --help"); +CAN_RUN_FUNC(Xz, "xz --help") /* * Can this filesystem handle nodump flags.