summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorStephen Hemminger <stephen@networkplumber.org>2022-06-02 14:38:06 -0700
committerStephen Hemminger <stephen@networkplumber.org>2022-06-02 14:38:06 -0700
commitc0f8b923ac8c48f7c41d09f0a59cc8554c0c6dbf (patch)
treeb517b700588207c4a6ccbf2ea3354faefa51d051
parent11e41a635cfab54e8e02fbff2a03715467e77ae9 (diff)
downloadiproute2-c0f8b923ac8c48f7c41d09f0a59cc8554c0c6dbf.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 87b4f34c..9fbeba75 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"