]> granicus.if.org Git - procps-ng/commitdiff
library: clean up some miscellaneous compiler warnings
authorJim Warner <james.warner@comcast.net>
Sun, 3 Jun 2018 05:00:00 +0000 (00:00 -0500)
committerCraig Small <csmall@enc.com.au>
Sat, 9 Jun 2018 11:35:20 +0000 (21:35 +1000)
Signed-off-by: Jim Warner <james.warner@comcast.net>
proc/diskstats.c
proc/meminfo.c
proc/pids.c
proc/slabinfo.c
proc/stat.c
proc/vmstat.c

index 957ffde63f185b4b10fb772cac16bd184af9b328..e935bb3c84016f1352b13383cc3eb46543b9927a 100644 (file)
@@ -501,7 +501,6 @@ static void diskstats_itemize_stacks_all (
 
 
 static inline int diskstats_items_check_failed (
-        struct ext_support *this,
         enum diskstats_item *items,
         int numitems)
 {
@@ -715,7 +714,7 @@ static int diskstats_stacks_reconfig_maybe (
         enum diskstats_item *items,
         int numitems)
 {
-    if (diskstats_items_check_failed(this, items, numitems))
+    if (diskstats_items_check_failed(items, numitems))
         return -1;
     /* is this the first time or have things changed since we were last called?
        if so, gotta' redo all of our stacks stuff ... */
@@ -1054,4 +1053,5 @@ PROCPS_EXPORT struct diskstats_result *xtra_diskstats_val (
         fprintf(stderr, "%s line %d: was %s, expected %s\n", file, lineno, typestr, str);
     }
     return &stack->head[relative_enum];
+    (void)info;
 } // end: xtra_diskstats_val
index cc8cdad0301fb7da414252fc83eb63fc9c94292c..13957255694f74ff098d7cbb9f481b5925ccceee 100644 (file)
@@ -944,4 +944,5 @@ PROCPS_EXPORT struct meminfo_result *xtra_meminfo_val (
         fprintf(stderr, "%s line %d: was %s, expected %s\n", file, lineno, typestr, str);
     }
     return &stack->head[relative_enum];
+    (void)info;
 } // end: xtra_meminfo_val
index b1d1572395aefad006fc1f74e877e2a384c24f31..d3cc55d0f674d90d533f40b2737c8bf65bfa3adc 100644 (file)
@@ -1546,4 +1546,5 @@ PROCPS_EXPORT struct pids_result *xtra_pids_val (
         fprintf(stderr, "%s line %d: was %s, expected %s\n", file, lineno, typestr, str);
     }
     return &stack->head[relative_enum];
+    (void)info;
 } // end: xtra_pids_val
index 966cf7d38f8684bf5c22b620db74d6b0406ea50a..4049c1a8f2119db3efe3de5ed14eb42b73609b46 100644 (file)
@@ -584,7 +584,6 @@ static void slabinfo_itemize_stacks_all (
 
 
 static inline int slabinfo_items_check_failed (
-        struct ext_support *this,
         enum slabinfo_item *items,
         int numitems)
 {
@@ -742,7 +741,7 @@ static int slabinfo_stacks_reconfig_maybe (
         enum slabinfo_item *items,
         int numitems)
 {
-    if (slabinfo_items_check_failed(this, items, numitems))
+    if (slabinfo_items_check_failed(items, numitems))
         return -1;
     /* is this the first time or have things changed since we were last called?
        if so, gotta' redo all of our stacks stuff ... */
@@ -1070,4 +1069,5 @@ PROCPS_EXPORT struct slabinfo_result *xtra_slabinfo_val (
         fprintf(stderr, "%s line %d: was %s, expected %s\n", file, lineno, typestr, str);
     }
     return &stack->head[relative_enum];
+    (void)info;
 } // end: xtra_slabinfo_val
index 78bfb1aeee72760ebd614ff38c4eab6edfbfefa1..524dfe074a522b76429d72f6c037281634027a26 100644 (file)
@@ -1213,4 +1213,5 @@ PROCPS_EXPORT struct stat_result *xtra_stat_val (
         fprintf(stderr, "%s line %d: was %s, expected %s\n", file, lineno, typestr, str);
     }
     return &stack->head[relative_enum];
+    (void)info;
 } // end: xtra_stat_val
index 14d79ec1d75dd9527e8cda4be77a5d368a603b26..f78f94fe00e5159da86e3f724c0033a746f2c341 100644 (file)
@@ -1312,4 +1312,5 @@ PROCPS_EXPORT struct vmstat_result *xtra_vmstat_val (
         fprintf(stderr, "%s line %d: was %s, expected %s\n", file, lineno, typestr, str);
     }
     return &stack->head[relative_enum];
+    (void)info;
 } // end: xtra_vmstat_val