python-dataproperty: bump version to 0.17.0
[buildroot-gz.git] / package / rpi-userland / 0005-dtmerge-add-missing-include-for-va_list.patch
blobf028f67bdcce5a4a441198dcf9a9deede6907198
1 From 1ffed0e8601afb7e65545bd545772edd0fccc404 Mon Sep 17 00:00:00 2001
2 From: Peter Seiderer <ps.report@gmx.net>
3 Date: Sat, 23 Apr 2016 17:48:13 +0200
4 Subject: [PATCH] dtmerge: add missing include for va_list
5 MIME-Version: 1.0
6 Content-Type: text/plain; charset=UTF-8
7 Content-Transfer-Encoding: 8bit
9 Fixes compile error with uclibc-1.0.14:
11 In file included from rpi-userland-52eca998aa43f278314579dba4798a3fe1da46c3/host_applications/linux/apps/dtmerge/dtmerge.c:32:0:
12 rpi-userland-52eca998aa43f278314579dba4798a3fe1da46c3/helpers/dtoverlay/dtoverlay.h:65:54: error: unknown type name ‘va_list’
13 const char *fmt, va_list args);
15 Signed-off-by: Peter Seiderer <ps.report@gmx.net>
16 ---
17 host_applications/linux/apps/dtmerge/dtmerge.c | 1 +
18 1 file changed, 1 insertion(+)
20 diff --git a/host_applications/linux/apps/dtmerge/dtmerge.c b/host_applications/linux/apps/dtmerge/dtmerge.c
21 index 9243da1..2ac8d39 100644
22 --- a/host_applications/linux/apps/dtmerge/dtmerge.c
23 +++ b/host_applications/linux/apps/dtmerge/dtmerge.c
24 @@ -28,6 +28,7 @@ SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
25 #include <stdio.h>
26 #include <stdlib.h>
27 #include <libfdt.h>
28 +#include <stdarg.h>
30 #include "dtoverlay.h"
32 --
33 2.8.1