From e74151786c1ec24929560438590597b493f212e1 Mon Sep 17 00:00:00 2001 From: rbuj Date: Tue, 27 Aug 2019 13:14:49 +0200 Subject: =?UTF-8?q?comparison=20of=20integer=20expressions=20of=20differen?= =?UTF-8?q?t=20signedness:=20=E2=80=98size=5Ft=E2=80=99?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/fr-command-tar.c | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'src/fr-command-tar.c') diff --git a/src/fr-command-tar.c b/src/fr-command-tar.c index e24e296..0c17433 100644 --- a/src/fr-command-tar.c +++ b/src/fr-command-tar.c @@ -1102,8 +1102,8 @@ fr_command_tar_get_capabilities (FrCommand *comm, capabilities |= FR_COMMAND_CAN_READ_WRITE; } else if (is_mime_type (mime_type, "application/x-7z-compressed-tar")) { - char *try_command[3] = { "7za", "7zr", "7z" }; - int i; + char *try_command[3] = { "7za", "7zr", "7z" }; + size_t i; for (i = 0; i < G_N_ELEMENTS (try_command); i++) { if (is_program_available (try_command[i], check_command)) { @@ -1126,8 +1126,8 @@ fr_command_tar_set_mime_type (FrCommand *comm, FR_COMMAND_CLASS (parent_class)->set_mime_type (comm, mime_type); if (is_mime_type (mime_type, "application/x-7z-compressed-tar")) { - char *try_command[3] = { "7za", "7zr", "7z" }; - int i; + char *try_command[3] = { "7za", "7zr", "7z" }; + size_t i; for (i = 0; i < G_N_ELEMENTS (try_command); i++) { if (is_program_in_path (try_command[i])) { -- cgit v1.2.1