diff options
author | Khem Raj <raj.khem@gmail.com> | 2023-01-18 14:40:50 -0800 |
---|---|---|
committer | Khem Raj <raj.khem@gmail.com> | 2023-01-21 10:02:02 -0800 |
commit | ee0de616df82937191613c85f9df7e872b99ed6f (patch) | |
tree | 586ae35fc3846af0aaa58ed0c57ab4dc4d96f54e /meta-networking/recipes-protocols/net-snmp/net-snmp | |
parent | 791d82af215f76984dc141bb5bf253c9176ee716 (diff) | |
download | meta-openembedded-ee0de616df82937191613c85f9df7e872b99ed6f.tar.gz |
net-snmp: Fix build with clang16
Signed-off-by: Khem Raj <raj.khem@gmail.com>
Diffstat (limited to 'meta-networking/recipes-protocols/net-snmp/net-snmp')
-rw-r--r-- | meta-networking/recipes-protocols/net-snmp/net-snmp/0001-Add-noreturn-attribute-to-netsnmp_pci_error.patch | 32 |
1 files changed, 32 insertions, 0 deletions
diff --git a/meta-networking/recipes-protocols/net-snmp/net-snmp/0001-Add-noreturn-attribute-to-netsnmp_pci_error.patch b/meta-networking/recipes-protocols/net-snmp/net-snmp/0001-Add-noreturn-attribute-to-netsnmp_pci_error.patch new file mode 100644 index 000000000..6fbace75a --- /dev/null +++ b/meta-networking/recipes-protocols/net-snmp/net-snmp/0001-Add-noreturn-attribute-to-netsnmp_pci_error.patch | |||
@@ -0,0 +1,32 @@ | |||
1 | From 5719f40db65a72624a0b0f08e546d12bf823bd1e Mon Sep 17 00:00:00 2001 | ||
2 | From: Khem Raj <raj.khem@gmail.com> | ||
3 | Date: Wed, 18 Jan 2023 14:38:44 -0800 | ||
4 | Subject: [PATCH] Add noreturn attribute to netsnmp_pci_error() | ||
5 | |||
6 | Fixes build with clang16 | ||
7 | | mibgroup/if-mib/data_access/interface_linux.c:152:23: error: incompatible function pointer types assigning to 'void (*)(char *, ...) __attribute__((noreturn))' from 'void (char *, ...)' [-Wincompatible-function-pointer-types] | ||
8 | | pci_access->error = netsnmp_pci_error; | ||
9 | | ^ ~~~~~~~~~~~~~~~~~ | ||
10 | |||
11 | Upstream-Status: Pending | ||
12 | Signed-off-by: Khem Raj <raj.khem@gmail.com> | ||
13 | --- | ||
14 | agent/mibgroup/if-mib/data_access/interface_linux.c | 2 +- | ||
15 | 1 file changed, 1 insertion(+), 1 deletion(-) | ||
16 | |||
17 | diff --git a/agent/mibgroup/if-mib/data_access/interface_linux.c b/agent/mibgroup/if-mib/data_access/interface_linux.c | ||
18 | index c6cc54e..12eb865 100644 | ||
19 | --- a/agent/mibgroup/if-mib/data_access/interface_linux.c | ||
20 | +++ b/agent/mibgroup/if-mib/data_access/interface_linux.c | ||
21 | @@ -31,7 +31,7 @@ static struct pci_access *pci_access; | ||
22 | /* Avoid letting libpci call exit(1) when no PCI bus is available. */ | ||
23 | static int do_longjmp =0; | ||
24 | static jmp_buf err_buf; | ||
25 | -static void | ||
26 | +__attribute__((noreturn)) static void | ||
27 | netsnmp_pci_error(char *msg, ...) | ||
28 | { | ||
29 | va_list args; | ||
30 | -- | ||
31 | 2.39.1 | ||
32 | |||