From 1aa72017ca1efc422d3be13077a3d9c769922c82 Mon Sep 17 00:00:00 2001 From: "Richard W.M. Jones" Date: Mon, 12 Mar 2012 11:26:29 +0000 Subject: lib: Use size_t instead of int for array iterator. --- src/appliance.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/appliance.c b/src/appliance.c index a6384c4a..9d51d3dc 100644 --- a/src/appliance.c +++ b/src/appliance.c @@ -730,7 +730,7 @@ run_supermin_helper (guestfs_h *g, const char *supermin_path, static void print_febootstrap_command_line (guestfs_h *g, const char *argv[]) { - int i; + size_t i; int needs_quote; char *buf; size_t len; -- cgit