mirror of
https://gitlab.com/libvirt/libvirt.git
synced 2025-01-23 02:04:16 +03:00
virTestCompareToULL: Rename local variables
The current naming makes it hard for me to see which holds the expected value and which holds the actual value. Rename them to make it obvious. Signed-off-by: Michal Privoznik <mprivozn@redhat.com> Reviewed-by: Andrea Bolognani <abologna@redhat.com> Reviewed-by: Ján Tomko <jtomko@redhat.com>
This commit is contained in:
parent
86d1f08669
commit
9de317d0d1
@ -822,16 +822,16 @@ int
|
||||
virTestCompareToULL(unsigned long long content,
|
||||
unsigned long long src)
|
||||
{
|
||||
VIR_AUTOFREE(char *) strcontent = NULL;
|
||||
VIR_AUTOFREE(char *) strsrc = NULL;
|
||||
VIR_AUTOFREE(char *) expectStr = NULL;
|
||||
VIR_AUTOFREE(char *) actualStr = NULL;
|
||||
|
||||
if (virAsprintf(&strcontent, "%llu", content) < 0)
|
||||
if (virAsprintf(&expectStr, "%llu", content) < 0)
|
||||
return -1;
|
||||
|
||||
if (virAsprintf(&strsrc, "%llu", src) < 0)
|
||||
if (virAsprintf(&actualStr, "%llu", src) < 0)
|
||||
return -1;
|
||||
|
||||
return virTestCompareToString(strcontent, strsrc);
|
||||
return virTestCompareToString(expectStr, actualStr);
|
||||
}
|
||||
|
||||
/*
|
||||
|
Loading…
x
Reference in New Issue
Block a user