From: VMware, Inc <> Date: Sat, 28 May 2011 20:08:57 +0000 (-0700) Subject: lib/log: fix the build X-Git-Tag: 2011.05.27-420096~20 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=f4218af9fd9758989f9f14d43bd3cf179ba7daef;p=thirdparty%2Fopen-vm-tools.git lib/log: fix the build Signed-off-by: Marcelo Vanzin --- diff --git a/open-vm-tools/libvmtools/vmtoolsLog.c b/open-vm-tools/libvmtools/vmtoolsLog.c index d42817436..9b2216c67 100644 --- a/open-vm-tools/libvmtools/vmtoolsLog.c +++ b/open-vm-tools/libvmtools/vmtoolsLog.c @@ -937,13 +937,13 @@ Log(const char *fmt, ...) */ void -LogV(int level, +LogV(uint32 routing, const char *fmt, va_list args) { int glevel; - switch (level) { + switch (routing) { case VMW_LOG_PANIC: glevel = G_LOG_LEVEL_ERROR; break;