From: Colin Ian King Date: Sun, 24 Jul 2016 18:24:09 +0000 (+0100) Subject: gtp: #define #define _GTP_H_ and not #define _GTP_H X-Git-Url: https://git.karo-electronics.de/?a=commitdiff_plain;h=9b8ac4f9dd60ac7375fb0e221dbf596db4c4e622;p=linux-beck.git gtp: #define #define _GTP_H_ and not #define _GTP_H 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 Signed-off-by: David S. Miller --- diff --git a/include/net/gtp.h b/include/net/gtp.h index 894a37b87d63..6398891b99ba 100644 --- a/include/net/gtp.h +++ b/include/net/gtp.h @@ -1,5 +1,5 @@ #ifndef _GTP_H_ -#define _GTP_H +#define _GTP_H_ /* General GTP protocol related definitions. */