mirror of https://gitee.com/openkylin/libvirt.git
util: conf: Fix parameters alignment
The parameters for virConfGetValueLLong() were not aligned properly.
This commit is contained in:
parent
a18710b377
commit
40bd972344
|
@ -1304,8 +1304,8 @@ int virConfGetValueSSizeT(virConfPtr conf,
|
|||
* Returns: 1 if the value was present, 0 if missing, -1 on error
|
||||
*/
|
||||
int virConfGetValueLLong(virConfPtr conf,
|
||||
const char *setting,
|
||||
long long *value)
|
||||
const char *setting,
|
||||
long long *value)
|
||||
{
|
||||
virConfValuePtr cval = virConfGetValue(conf, setting);
|
||||
|
||||
|
|
Loading…
Reference in New Issue