aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorIshan Agrawal <iagrawal9990@gmail.com>2026-07-24 13:27:59 +0000
committerKristof Provost <kp@FreeBSD.org>2026-07-27 07:24:49 +0000
commit5c1461a2b0fdf845292681aa46b56c620da57e25 (patch)
treec5301bf0af5bdeea12a531e618bebbb0b11ffc58
parente3e56236bcae96a44dc47be5e3a7ffac3322b49f (diff)
libsysdecode: use local sysdecode.h
Replace <sysdecode.h> with "sysdecode.h" so local builds use the in-tree header in lib/libsysdecode instead of a stale installed copy in /usr/include, avoiding build failures after updating sysdecode.h. Signed-off-by: Ishan Agrawal <iagrawal9990@gmail.com> Sponsored-by: Google LLC (GSoC 2026) Reviewed by: kp Pull-Request: https://github.com/freebsd/freebsd-src/pull/2338
-rw-r--r--lib/libsysdecode/flags.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/libsysdecode/flags.c b/lib/libsysdecode/flags.c
index 90bebde4dc2b..f94fb88ebf83 100644
--- a/lib/libsysdecode/flags.c
+++ b/lib/libsysdecode/flags.c
@@ -63,7 +63,6 @@
#include <stdio.h>
#include <stdlib.h>
#include <strings.h>
-#include <sysdecode.h>
#include <unistd.h>
#include <sys/bitstring.h>
#include <netgraph/bluetooth/include/ng_hci.h>
@@ -73,6 +72,7 @@
#include <netlink/netlink.h>
#include "support.h"
+#include "sysdecode.h"
#define X(a) { a, #a },
#define XEND { 0, NULL }