util: conf: Fix parameters alignment

The parameters for virConfGetValueLLong() were not aligned
properly.
This commit is contained in:
Andrea Bolognani 2016-07-15 17:26:58 +02:00
parent a18710b377
commit 40bd972344

View File

@ -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);