From: Oliver Kurth Date: Fri, 15 Sep 2017 18:23:54 +0000 (-0700) Subject: Export and call a valist version of Msg_Append X-Git-Tag: stable-10.2.0~72 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=ff8a4800edf33a887efcce487efd763f9343c71f;p=thirdparty%2Fopen-vm-tools.git Export and call a valist version of Msg_Append This change exports a valist version of Msg_Append. --- diff --git a/open-vm-tools/lib/include/msg.h b/open-vm-tools/lib/include/msg.h index 44abe0e90..e90a44a28 100644 --- a/open-vm-tools/lib/include/msg.h +++ b/open-vm-tools/lib/include/msg.h @@ -1,5 +1,5 @@ /********************************************************* - * Copyright (C) 1998-2016 VMware, Inc. All rights reserved. + * Copyright (C) 1998-2017 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 @@ -128,6 +128,7 @@ VMX86_EXTERN_DATA Msg_String const Msg_Severities[]; void Msg_Append(const char *idFmt, ...) PRINTF_DECL(1, 2); +void Msg_VAppend(const char *idFmt, va_list args); void Msg_AppendStr(const char *id); void Msg_AppendMsgList(const MsgList *msgs);