From 01873813754c1208ab3829b7fd743da31599332e Mon Sep 17 00:00:00 2001 From: eadler Date: Fri, 20 Jan 2012 01:37:56 +0000 Subject: Fix warning when compiling with gcc46: error: variable 'current_cpu' set but not used Approved by: dim, cperciva (mentor, blanket for pre-mentorship already-approved commits) MFC after: 3 days --- usr.sbin/pmcstat/pmcstat.c | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/usr.sbin/pmcstat/pmcstat.c b/usr.sbin/pmcstat/pmcstat.c index 8f13206..0133119 100644 --- a/usr.sbin/pmcstat/pmcstat.c +++ b/usr.sbin/pmcstat/pmcstat.c @@ -551,7 +551,7 @@ main(int argc, char **argv) cpuset_t cpumask; double interval; int hcpu, option, npmc, ncpu; - int c, check_driver_stats, current_cpu, current_sampling_count; + int c, check_driver_stats, current_sampling_count; int do_callchain, do_descendants, do_logproccsw, do_logprocexit; int do_print, do_read; size_t dummy; @@ -571,7 +571,6 @@ main(int argc, char **argv) char buffer[PATH_MAX]; check_driver_stats = 0; - current_cpu = 0; current_sampling_count = DEFAULT_SAMPLE_COUNT; do_callchain = 1; do_descendants = 0; -- cgit v1.1