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
This commit is contained in:
Eitan Adler 2012-01-20 01:37:56 +00:00
parent 2bb133e752
commit 831b96303a
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=230350

View File

@ -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;