diff options
author | Thomas Haller <thaller@redhat.com> | 2023-08-03 06:30:38 (GMT) |
---|---|---|
committer | Thomas Haller <thaller@redhat.com> | 2023-08-03 07:28:44 (GMT) |
commit | 98c1e69631317628b604ed2673417753515f19fa (patch) | |
tree | 2231e732d5d49b073aa09257240ba9eaa249ef2d | |
parent | 42bec462af2964ab5927ffac9a81ac69171ef720 (diff) | |
download | libnl-98c1e69631317628b604ed2673417753515f19fa.zip libnl-98c1e69631317628b604ed2673417753515f19fa.tar.gz libnl-98c1e69631317628b604ed2673417753515f19fa.tar.bz2 |
tests: cleanup include of netlink headers
For no strong reason, we include the public netlink headers with
<> instead of "". Be consistent.
-rw-r--r-- | tests/nl-test-util.h | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/tests/nl-test-util.h b/tests/nl-test-util.h index aaae79d..8af2540 100644 --- a/tests/nl-test-util.h +++ b/tests/nl-test-util.h @@ -8,11 +8,10 @@ #include <string.h> #include <stdbool.h> #include <arpa/inet.h> - #include <check.h> -#include "netlink/object.h" -#include "netlink/cache.h" +#include <netlink/object.h> +#include <netlink/cache.h> #include "base/nl-base-utils.h" #include "nl-aux-core/nl-core.h" |