From: Katy Feng Date: Tue, 22 Aug 2023 18:11:42 +0000 (-0700) Subject: Fix VThreadBase_ForgetSelf using wrong format specifier for VThread_CurID. X-Git-Tag: stable-12.3.0~31 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=8047bc8787d3bf04748fb3435c1731cc03f30405;p=thirdparty%2Fopen-vm-tools.git Fix VThreadBase_ForgetSelf using wrong format specifier for VThread_CurID. --- diff --git a/open-vm-tools/lib/misc/vthreadBase.c b/open-vm-tools/lib/misc/vthreadBase.c index b4a7b1362..4616d7545 100644 --- a/open-vm-tools/lib/misc/vthreadBase.c +++ b/open-vm-tools/lib/misc/vthreadBase.c @@ -1,5 +1,5 @@ /********************************************************* - * Copyright (C) 2010-2019 VMware, Inc. All rights reserved. + * Copyright (C) 2010-2023 VMware, Inc. All rights reserved. * * This program is free software; you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License as published @@ -574,7 +574,7 @@ VThreadBase_ForgetSelf(void) #endif if (vmx86_debug) { - Log("Forgetting VThreadID %" FMTPD "d (\"%s\").\n", + Log("Forgetting VThreadID %" FMTPD "u (\"%s\").\n", VThread_CurID(), VThread_CurName()); }