diff options
author | Peter Korsgaard <peter@korsgaard.com> | 2015-03-02 23:26:20 +0100 |
---|---|---|
committer | Peter Korsgaard <peter@korsgaard.com> | 2015-03-02 23:26:20 +0100 |
commit | 7403ea730d75ce0af51cb1bd5665674bb5bfae42 (patch) | |
tree | d93cc0b4a8878d90ab0bb79c76d75805ee1c2a9d /package/ktap/0001-Add-missing-stdarg.h-include.patch | |
parent | 1021766976319b40e64ca8dee12d21c758197801 (diff) | |
parent | e6803b9f91357773154daed13d6e83712d49476c (diff) | |
download | buildroot-7403ea730d75ce0af51cb1bd5665674bb5bfae42.tar.gz buildroot-7403ea730d75ce0af51cb1bd5665674bb5bfae42.zip |
Merge branch 'next'
Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
Diffstat (limited to 'package/ktap/0001-Add-missing-stdarg.h-include.patch')
-rw-r--r-- | package/ktap/0001-Add-missing-stdarg.h-include.patch | 47 |
1 files changed, 0 insertions, 47 deletions
diff --git a/package/ktap/0001-Add-missing-stdarg.h-include.patch b/package/ktap/0001-Add-missing-stdarg.h-include.patch deleted file mode 100644 index 9c4566f395..0000000000 --- a/package/ktap/0001-Add-missing-stdarg.h-include.patch +++ /dev/null @@ -1,47 +0,0 @@ -From dc135d8f1f2a843cebd4da0d4b17828911e162a6 Mon Sep 17 00:00:00 2001 -From: Thomas Petazzoni <thomas.petazzoni@free-electrons.com> -Date: Sat, 1 Nov 2014 18:53:47 +0100 -Subject: [PATCH] Add missing <stdarg.h> include -MIME-Version: 1.0 -Content-Type: text/plain; charset=UTF-8 -Content-Transfer-Encoding: 8bit - -Fixes: - -In file included from userspace/kp_bcwrite.c:32:0: -userspace/kp_util.h:74:14: error: unknown type name ‘va_list’ - ErrMsg em, va_list argp); - ^ -userspace/kp_util.h:76:42: error: unknown type name ‘va_list’ - const char *kp_sprintfv(const char *fmt, va_list argp); - ^ -In file included from userspace/kp_lex.c:28:0: -userspace/kp_util.h:74:14: error: unknown type name ‘va_list’ - ErrMsg em, va_list argp); - ^ -userspace/kp_util.h:76:42: error: unknown type name ‘va_list’ - const char *kp_sprintfv(const char *fmt, va_list argp); - -Submitted upstream: https://github.com/ktap/ktap/pull/77 - -Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com> ---- - userspace/kp_util.h | 2 ++ - 1 file changed, 2 insertions(+) - -diff --git a/userspace/kp_util.h b/userspace/kp_util.h -index af0b221..5778dc4 100644 ---- a/userspace/kp_util.h -+++ b/userspace/kp_util.h -@@ -1,6 +1,8 @@ - #ifndef __KTAP_UTIL_H__ - #define __KTAP_UTIL_H__ - -+#include <stdarg.h> -+ - #include "../include/ktap_bc.h" - #include "../include/ktap_err.h" - --- -2.0.0 - |