[PATCH] xenstore: talloc.h needs to include stdarg.h

Jan Beulich posted 1 patch 10 months ago
Failed in applying to current master (apply log)
[PATCH] xenstore: talloc.h needs to include stdarg.h
Posted by Jan Beulich 10 months ago
talloc_vasprintf() has a va_list type parameter, so this type needs to
be defined (independent of the particular libc implementation).

Fixes: 63b6419d2a2d ("tools/xenstore: split out rest of live update control code")
Signed-off-by: Jan Beulich <jbeulich@suse.com>
---
The Fixes: tag is largely a guess; I did not verify whether any other of
the recent changes would also play into this.

--- a/tools/xenstore/talloc.h
+++ b/tools/xenstore/talloc.h
@@ -24,6 +24,7 @@
    License along with this library; If not, see <http://www.gnu.org/licenses/>.
 */
 
+#include <stdarg.h>
 #include <sys/types.h>
 
 #include "utils.h"
Re: [PATCH] xenstore: talloc.h needs to include stdarg.h
Posted by Juergen Gross 10 months ago
On 05.07.23 16:43, Jan Beulich wrote:
> talloc_vasprintf() has a va_list type parameter, so this type needs to
> be defined (independent of the particular libc implementation).
> 
> Fixes: 63b6419d2a2d ("tools/xenstore: split out rest of live update control code")
> Signed-off-by: Jan Beulich <jbeulich@suse.com>

Reviewed-by: Juergen Gross <jgross@suse.com>


Juergen