mirror of
https://gitlab.com/libvirt/libvirt.git
synced 2024-12-22 13:45:38 +00:00
virsh: Fix variable types in readline generators
Use unsigned int for array indexes and size_t for length variables. Signed-off-by: Nishith Shah <nishithshah.2211@gmail.com>
This commit is contained in:
parent
2432521e03
commit
d7079ec98e
@ -2537,7 +2537,8 @@ vshTreePrint(vshControl *ctl, vshTreeLookup lookup, void *opaque,
|
||||
static char *
|
||||
vshReadlineCommandGenerator(const char *text, int state)
|
||||
{
|
||||
static int grp_list_index, cmd_list_index, len;
|
||||
static unsigned int grp_list_index, cmd_list_index;
|
||||
static size_t len;
|
||||
const char *name;
|
||||
const vshCmdGrp *grp;
|
||||
const vshCmdDef *cmds;
|
||||
@ -2576,7 +2577,8 @@ vshReadlineCommandGenerator(const char *text, int state)
|
||||
static char *
|
||||
vshReadlineOptionsGenerator(const char *text, int state)
|
||||
{
|
||||
static int list_index, len;
|
||||
static unsigned int list_index;
|
||||
static size_t len;
|
||||
static const vshCmdDef *cmd;
|
||||
const char *name;
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user