mirror of
https://gitlab.com/libvirt/libvirt.git
synced 2025-01-10 05:17:59 +03:00
build: avoid warning about unused variables
* tools/virsh.c (cmdCPUBaseline): Remove declarations of unused variables, p and cur.
This commit is contained in:
parent
a79fb1c491
commit
8ddff3e6cd
@ -7048,12 +7048,11 @@ cmdCPUBaseline(vshControl *ctl, const vshCmd *cmd)
|
||||
int found;
|
||||
int ret = TRUE;
|
||||
char *buffer;
|
||||
char *p;
|
||||
char *result = NULL;
|
||||
const char **list = NULL;
|
||||
unsigned int count = 0;
|
||||
xmlDocPtr doc = NULL;
|
||||
xmlNodePtr node_list, cur;
|
||||
xmlNodePtr node_list;
|
||||
xmlXPathContextPtr ctxt = NULL;
|
||||
xmlSaveCtxtPtr sctxt = NULL;
|
||||
xmlBufferPtr buf = NULL;
|
||||
|
Loading…
Reference in New Issue
Block a user