From: Martin Kletzander Date: Tue, 17 Jan 2012 14:55:57 +0000 (+0100) Subject: Fixed dumpxml of parameters X-Git-Tag: v0.9.10-rc1~171 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=e1eb93470edfdeaa06c4435f280a59ba0b9bc92e;p=thirdparty%2Flibvirt.git Fixed dumpxml of parameters The output of dumpxml for settings was misformatted, this patch just adds missing newlines. --- diff --git a/src/conf/domain_conf.c b/src/conf/domain_conf.c index 8f6eea7946..96a4669fc3 100644 --- a/src/conf/domain_conf.c +++ b/src/conf/domain_conf.c @@ -10050,12 +10050,12 @@ virDomainDiskDefFormat(virBufferPtr buf, } if (def->blkdeviotune.read_iops_sec) { - virBufferAsprintf(buf, " %llu", + virBufferAsprintf(buf, " %llu\n", def->blkdeviotune.read_iops_sec); } if (def->blkdeviotune.write_iops_sec) { - virBufferAsprintf(buf, " %llu", + virBufferAsprintf(buf, " %llu\n", def->blkdeviotune.write_iops_sec); }