]> git.ipfire.org Git - thirdparty/libarchive.git/commitdiff
fix: remove extra ';' outside of functions 2741/head
authorEisuke Kawashima <e-kwsm@users.noreply.github.com>
Fri, 26 Sep 2025 10:38:01 +0000 (19:38 +0900)
committerEisuke Kawashima <e-kwsm@users.noreply.github.com>
Fri, 26 Sep 2025 10:41:30 +0000 (19:41 +0900)
test_utils/test_main.c

index 48698535526a062d1ac4a10a4c8c3a12f2e8bb15..f4d443060d882f785ce048b881cf92835a8cc03e 100644 (file)
@@ -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.