]> git.ipfire.org Git - thirdparty/open-vm-tools.git/commitdiff
lib/misc/hostinfoPosix.c:
authorJohn Wolfe <jwolfe@vmware.com>
Mon, 5 Apr 2021 16:01:42 +0000 (09:01 -0700)
committerJohn Wolfe <jwolfe@vmware.com>
Mon, 5 Apr 2021 16:01:42 +0000 (09:01 -0700)
Correct an ifdef typo introduced in an earlier change.

open-vm-tools/lib/misc/hostinfoPosix.c

index 65b9619c92941bd32a327dff505aab14aeb72f22..7e0866699404fd2f4d16376606ae6d68920e278f 100644 (file)
@@ -902,9 +902,9 @@ HostinfoSearchShortNames(const ShortNameSet *array, // IN:
 static const char *
 HostinfoArchString(void)
 {
-#if defined(vm_arm_any)
+#if defined(VM_ARM_ANY)
    return "arm-";
-#elif defined(vm_x86_any)
+#elif defined(VM_X86_ANY)
    return "";
 #else
 #error Unsupported architecture!