diff options
author | eadler <eadler@FreeBSD.org> | 2012-01-20 01:37:56 +0000 |
---|---|---|
committer | eadler <eadler@FreeBSD.org> | 2012-01-20 01:37:56 +0000 |
commit | 01873813754c1208ab3829b7fd743da31599332e (patch) | |
tree | bab571707998395a66b3e11f2ba82e5158da48d4 /usr.sbin/pmcstat | |
parent | f90254c48eb93cb707756d1606058cd3256c9e1b (diff) | |
download | FreeBSD-src-01873813754c1208ab3829b7fd743da31599332e.zip FreeBSD-src-01873813754c1208ab3829b7fd743da31599332e.tar.gz |
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
Diffstat (limited to 'usr.sbin/pmcstat')
-rw-r--r-- | usr.sbin/pmcstat/pmcstat.c | 3 |
1 files changed, 1 insertions, 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; |