]> xenbits.xensource.com Git - libvirt.git/commitdiff
qemu: command: Fix the qemuBuldDomainLoaderPflashCommandLine name typo
authorErik Skultety <eskultet@redhat.com>
Fri, 21 Jan 2022 14:20:22 +0000 (15:20 +0100)
committerErik Skultety <eskultet@redhat.com>
Fri, 21 Jan 2022 14:20:22 +0000 (15:20 +0100)
The function should be called qemuBuildDomainLoaderPflashCommandLine.

Signed-off-by: Erik Skultety <eskultet@redhat.com>
src/qemu/qemu_command.c

index 60b4f96e064c208078b6fdba1a699088a79ec0ad..733cd470460d0f2b878a757904f8568dcf9b313e 100644 (file)
@@ -9614,7 +9614,7 @@ qemuBuildRedirdevCommandLine(virCommand *cmd,
 
 
 static void
-qemuBuldDomainLoaderPflashCommandLine(virCommand *cmd,
+qemuBuildDomainLoaderPflashCommandLine(virCommand *cmd,
                                       virDomainLoaderDef *loader,
                                       virQEMUCaps *qemuCaps)
 {
@@ -9673,7 +9673,7 @@ qemuBuildDomainLoaderCommandLine(virCommand *cmd,
         break;
 
     case VIR_DOMAIN_LOADER_TYPE_PFLASH:
-        qemuBuldDomainLoaderPflashCommandLine(cmd, loader, qemuCaps);
+        qemuBuildDomainLoaderPflashCommandLine(cmd, loader, qemuCaps);
         break;
 
     case VIR_DOMAIN_LOADER_TYPE_NONE: