]> git.ipfire.org Git - thirdparty/libvirt.git/commitdiff
qemuDomainSetupAllInputs: Update debug message
authorMichal Privoznik <mprivozn@redhat.com>
Wed, 11 Jan 2017 14:16:06 +0000 (15:16 +0100)
committerMichal Privoznik <mprivozn@redhat.com>
Wed, 11 Jan 2017 16:39:24 +0000 (17:39 +0100)
Due to a copy-paste error, the debug message reads:

  Setting up disks

It should have been:

  Setting up inputs.

Signed-off-by: Michal Privoznik <mprivozn@redhat.com>
src/qemu/qemu_domain.c

index b26c02bda421c7a04443aafa3120518c934ef597..473d0c1a2c047c5acb02638e5aa64e92eaf794b0 100644 (file)
@@ -7275,14 +7275,14 @@ qemuDomainSetupAllInputs(virQEMUDriverPtr driver,
 {
     size_t i;
 
-    VIR_DEBUG("Setting up disks");
+    VIR_DEBUG("Setting up inputs");
     for (i = 0; i < vm->def->ninputs; i++) {
         if (qemuDomainSetupInput(driver,
                                  vm->def->inputs[i],
                                  devPath) < 0)
             return -1;
     }
-    VIR_DEBUG("Setup all disks");
+    VIR_DEBUG("Setup all inputs");
     return 0;
 }