summaryrefslogtreecommitdiffstats
path: root/meta/recipes-devtools/json-c/json-c/0001-Fix-build-with-clang-15.patch
diff options
context:
space:
mode:
Diffstat (limited to 'meta/recipes-devtools/json-c/json-c/0001-Fix-build-with-clang-15.patch')
-rw-r--r--meta/recipes-devtools/json-c/json-c/0001-Fix-build-with-clang-15.patch34
1 files changed, 34 insertions, 0 deletions
diff --git a/meta/recipes-devtools/json-c/json-c/0001-Fix-build-with-clang-15.patch b/meta/recipes-devtools/json-c/json-c/0001-Fix-build-with-clang-15.patch
new file mode 100644
index 0000000000..215f4d829a
--- /dev/null
+++ b/meta/recipes-devtools/json-c/json-c/0001-Fix-build-with-clang-15.patch
@@ -0,0 +1,34 @@
1From 0145b575ac1fe6a77e00d639864f26fc91ceb12f Mon Sep 17 00:00:00 2001
2From: Khem Raj <raj.khem@gmail.com>
3Date: Sat, 13 Aug 2022 20:37:03 -0700
4Subject: [PATCH] Fix build with clang-15+
5
6Fixes
7json_util.c:63:35: error: a function declaration without a prototype is deprecated in all versions of C [-We
8rror,-Wstrict-prototypes]
9const char *json_util_get_last_err()
10 ^
11 void
12
13Upstream-Status: Backport [https://github.com/json-c/json-c/pull/783]
14Signed-off-by: Khem Raj <raj.khem@gmail.com>
15---
16 json_util.c | 2 +-
17 1 file changed, 1 insertion(+), 1 deletion(-)
18
19diff --git a/json_util.c b/json_util.c
20index 952770a..83d9c68 100644
21--- a/json_util.c
22+++ b/json_util.c
23@@ -60,7 +60,7 @@ static int _json_object_to_fd(int fd, struct json_object *obj, int flags, const
24
25 static char _last_err[256] = "";
26
27-const char *json_util_get_last_err()
28+const char *json_util_get_last_err(void)
29 {
30 if (_last_err[0] == '\0')
31 return NULL;
32--
332.37.2
34