diff options
| author | Ishan Agrawal <iagrawal9990@gmail.com> | 2026-07-24 13:27:59 +0000 |
|---|---|---|
| committer | Kristof Provost <kp@FreeBSD.org> | 2026-07-27 07:24:49 +0000 |
| commit | 5c1461a2b0fdf845292681aa46b56c620da57e25 (patch) | |
| tree | c5301bf0af5bdeea12a531e618bebbb0b11ffc58 | |
| parent | e3e56236bcae96a44dc47be5e3a7ffac3322b49f (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.c | 2 |
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 } |
