gtp: #define #define _GTP_H_ and not #define _GTP_H
authorColin Ian King <colin.king@canonical.com>
Sun, 24 Jul 2016 18:24:09 +0000 (19:24 +0100)
committerDavid S. Miller <davem@davemloft.net>
Tue, 26 Jul 2016 00:55:43 +0000 (17:55 -0700)
Fix clang build warning:

./include/net/gtp.h:1:9: warning: '_GTP_H_' is used as a header
guard here, followed by #define of a different macro [-Wheader-guard]

fix by defining _GTP_H_ and not _GTP_H

Signed-off-by: Colin Ian King <colin.king@canonical.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
include/net/gtp.h

index 894a37b87d634be653dd98b59f61bbd3be90448e..6398891b99ba0f82cbbf626b79be651f6fbf4c4f 100644 (file)
@@ -1,5 +1,5 @@
 #ifndef _GTP_H_
-#define _GTP_H
+#define _GTP_H_
 
 /* General GTP protocol related definitions. */
 
This page took 0.025732 seconds and 5 git commands to generate.