aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorStephen Hemminger <stephen@networkplumber.org>2022-06-02 14:38:06 -0700
committerStephen Hemminger <stephen@networkplumber.org>2022-06-17 10:08:19 -0700
commita44a791860f135d654a57797e36c31051d549a06 (patch)
tree4962a505345066822f0bd4a7c1660c897abd5726
parent703f2de6f59f97d40a7028350061c72d36d9d5bd (diff)
downloadiproute2-a44a791860f135d654a57797e36c31051d549a06.tar.gz
genl: fix duplicate include guard
Found by LGTM. Signed-off-by: Stephen Hemminger <stephen@networkplumber.org>
-rw-r--r--genl/genl_utils.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/genl/genl_utils.h b/genl/genl_utils.h
index 87b4f34c5..9fbeba75b 100644
--- a/genl/genl_utils.h
+++ b/genl/genl_utils.h
@@ -1,6 +1,6 @@
/* SPDX-License-Identifier: GPL-2.0 */
-#ifndef _TC_UTIL_H_
-#define _TC_UTIL_H_ 1
+#ifndef _GENL_UTILS_H_
+#define _GENL_UTILS_H_ 1
#include <linux/genetlink.h>
#include "utils.h"