From: Tim Kientzle Date: Sat, 27 Sep 2025 02:50:52 +0000 (-0700) Subject: Merge pull request #2741 from e-kwsm/extra-semi X-Git-Tag: v3.8.2~8 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=e3cb54b42bbdf387065ab70a7b359c8ab85010e6;p=thirdparty%2Flibarchive.git Merge pull request #2741 from e-kwsm/extra-semi fix: remove extra ';' outside of functions (cherry picked from commit c34ff01c026fb74fd0967b277602ad655eccaf74) --- 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.