From: Jim Meyering Date: Fri, 21 Aug 2009 13:02:16 +0000 (+0200) Subject: destpaths.c: avoid signed/unsigned-comparison warning X-Git-Tag: 1.0.69~41 X-Git-Url: http://git.annexia.org/?p=libguestfs.git;a=commitdiff_plain;h=fad78c609423fe10139b468ec229c3d6792718e2 destpaths.c: avoid signed/unsigned-comparison warning * fish/destpaths.c (free_words): Change param type: s/int/size_t/. --- diff --git a/fish/destpaths.c b/fish/destpaths.c index 8b6173a..275db49 100644 --- a/fish/destpaths.c +++ b/fish/destpaths.c @@ -61,7 +61,7 @@ struct word { }; static void -free_words (struct word *words, int nr_words) +free_words (struct word *words, size_t nr_words) { size_t i;