]> git.decadent.org.uk Git - nfs-utils.git/commitdiff
emove warnings from cacheio.c
authorSteve Dickson <steved@redhat.com>
Mon, 19 Jul 2010 16:31:48 +0000 (12:31 -0400)
committerSteve Dickson <steved@redhat.com>
Mon, 9 Aug 2010 13:57:02 +0000 (09:57 -0400)
cacheio.c: In function 'cache_flush':
cacheio.c:352: warning: comparison between signed and unsigned integer expressions

Signed-off-by: Steve Dickson <steved@redhat.com>
support/nfs/cacheio.c

index 55fa45d7e620c458917d0015c3af19fbf39bc452..9bad8e61f827e814592f539d51fc2784547b939a 100644 (file)
@@ -349,7 +349,7 @@ cache_flush(int force)
                sprintf(path, "/proc/net/rpc/%s/flush", cachelist[c]);
                fd = open(path, O_RDWR);
                if (fd >= 0) {
-                       if (write(fd, stime, strlen(stime)) != strlen(stime)) {
+                       if (write(fd, stime, strlen(stime)) != (ssize_t)strlen(stime)) {
                                xlog_warn("Writing to '%s' failed: errno %d (%s)",
                                path, errno, strerror(errno));
                        }