]> xenbits.xensource.com Git - people/aperard/xen-unstable.git/commitdiff
xenstore: talloc.h needs to include stdarg.h
authorJan Beulich <jbeulich@suse.com>
Thu, 6 Jul 2023 07:06:27 +0000 (09:06 +0200)
committerJan Beulich <jbeulich@suse.com>
Thu, 6 Jul 2023 07:06:27 +0000 (09:06 +0200)
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>
tools/xenstore/talloc.h

index a0f4bff25788e6964cc42ad9f9c3b5af0fe4a49a..518fcac1515af13fa419ab4ab13f1024d43d28af 100644 (file)
@@ -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"