From: Jim Meyering Date: Thu, 6 Aug 2009 14:05:44 +0000 (+0200) Subject: build: avoid warnings in daemon/inotify.c X-Git-Tag: 1.0.67~52 X-Git-Url: http://git.annexia.org/?a=commitdiff_plain;h=98869b86413ff59afa009f9d06ebc0cc4477ab31;hp=98869b86413ff59afa009f9d06ebc0cc4477ab31;p=libguestfs.git build: avoid warnings in daemon/inotify.c Avoid "comparison between signed and unsigned integer expressions" warnings. If it's at all hard or risky to avoid this type of warning, then it's not worthwhile. Here, it's easy and safe. * daemon/inotify.c (inotify_posn): Declare local to be of unsigned type. (do_inotify_read, do_inotify_files): Likewise. ---