From d4aca64b533bcd7962476780c9636ae27136dd3e Mon Sep 17 00:00:00 2001 From: Jim Meyering Date: Sun, 29 May 2011 11:28:29 +0200 Subject: maint: placate -Wsign-compare when it's non-invasive * src/stdbuf.c: Declare loop index to be unsigned. --- src/stdbuf.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/stdbuf.c b/src/stdbuf.c index 607859ca1..2f66dd5ba 100644 --- a/src/stdbuf.c +++ b/src/stdbuf.c @@ -257,7 +257,7 @@ set_LD_PRELOAD (void) static void set_libstdbuf_options (void) { - int i; + unsigned int i; for (i = 0; i < ARRAY_CARDINALITY (stdbuf); i++) { -- cgit v1.2.3-54-g00ecf