From: John Wolfe Date: Mon, 5 Apr 2021 16:01:42 +0000 (-0700) Subject: lib/misc/hostinfoPosix.c: X-Git-Tag: stable-11.3.0~83 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=a5b6b94525ee86d4283ae1db3c424435c93dac61;p=thirdparty%2Fopen-vm-tools.git lib/misc/hostinfoPosix.c: Correct an ifdef typo introduced in an earlier change. --- diff --git a/open-vm-tools/lib/misc/hostinfoPosix.c b/open-vm-tools/lib/misc/hostinfoPosix.c index 65b9619c9..7e0866699 100644 --- a/open-vm-tools/lib/misc/hostinfoPosix.c +++ b/open-vm-tools/lib/misc/hostinfoPosix.c @@ -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!