domtop: Remove unused variable

The variable 'k' in the print_cpu_usage function is not used anywhere
and can fire a warning on some compilers.

Signed-off-by: Michal Privoznik <mprivozn@redhat.com>
This commit is contained in:
Michal Privoznik 2014-08-04 14:40:52 +02:00
parent 859aa405e1
commit dc64be90b5

View File

@ -199,7 +199,7 @@ print_cpu_usage(const char *dom_name,
virTypedParameterPtr now_params,
size_t now_nparams)
{
size_t i, j, k;
size_t i, j;
size_t nparams = now_nparams;
bool delim = false;