From 187270ea8316bdac91ca76cfbda878daa352860a Mon Sep 17 00:00:00 2001 From: Dmitry Vyukov Date: Mon, 25 Sep 2017 13:14:32 +0200 Subject: vm/qemu: fix typo --- vm/qemu/qemu.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'vm') diff --git a/vm/qemu/qemu.go b/vm/qemu/qemu.go index 9049be8a0..0e02504a1 100644 --- a/vm/qemu/qemu.go +++ b/vm/qemu/qemu.go @@ -89,7 +89,7 @@ var archConfigs = map[string]archConfig{ } func ctor(env *vmimpl.Env) (vmimpl.Pool, error) { - archConfig := archConfigs[env.Arch+"/"+env.Arch] + archConfig := archConfigs[env.OS+"/"+env.Arch] cfg := &Config{ Count: 1, Qemu: archConfig.Qemu, -- cgit mrf-deployment