]> git.decadent.org.uk Git - nfs-utils.git/commitdiff
Removed warnings from nfsstat.c
authorSteve Dickson <steved@redhat.com>
Mon, 19 Jul 2010 18:54:51 +0000 (14:54 -0400)
committerSteve Dickson <steved@redhat.com>
Mon, 9 Aug 2010 13:57:02 +0000 (09:57 -0400)
nfsstat.c: In function 'print_callstats':
nfsstat.c:797: warning: comparison between signed and unsigned integer
expressions
nfsstat.c:801: warning: comparison between signed and unsigned integer
expressions
nfsstat.c:802: warning: comparison between signed and unsigned integer
expressions
nfsstat.c:805: warning: comparison between signed and unsigned integer
expressions

nfsstat.c: In function 'print_callstats_list':
nfsstat.c:821: warning: comparison between signed and unsigned integer
expressions
nfsstat.c:828: warning: comparison between signed and unsigned integer
expressions

nfsstat.c: In function 'unpause':
nfsstat.c:1111: warning: unused parameter 'sig'
Signed-off-by: Steve Dickson <steved@redhat.com>
utils/nfsstat/nfsstat.c

index 99d77c962174f26b68157abaad9f1dce8a47c037..740a80393c7959375eb069080987802599f3b7dd 100644 (file)
@@ -791,7 +791,7 @@ print_callstats(const char *hdr, const char **names,
 {
        unsigned long long      total;
        unsigned long long      pct;
-       int             i, j;
+       unsigned int            i, j;
 
        fputs(hdr, stdout);
        for (i = 0, total = 0; i < nr; i++)
@@ -816,7 +816,7 @@ print_callstats_list(const char *hdr, const char **names,
                        unsigned int *callinfo, unsigned int nr)
 {
        unsigned long long      calltotal;
-       int                     i;
+       unsigned int                    i;
 
        for (i = 0, calltotal = 0; i < nr; i++) {
                calltotal += callinfo[i];
@@ -1118,7 +1118,7 @@ unpause(int sig)
        time_diff = difftime(endtime, starttime);
        minutes = time_diff / 60;
        seconds = (int)time_diff % 60;
-       printf("Signal received; displaying (only) statistics gathered over the last %d minutes, %d seconds:\n\n", minutes, seconds);
+       printf("Signal %d received; displaying (only) statistics gathered over the last %d minutes, %d seconds:\n\n", sig, minutes, seconds);
 }
 
 static void