Skip to content

Commit 9b8ac4f

Browse files
Colin Ian Kingdavem330
authored andcommitted
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 <colin.king@canonical.com> Signed-off-by: David S. Miller <davem@davemloft.net>
1 parent 779d143 commit 9b8ac4f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

include/net/gtp.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
#ifndef _GTP_H_
2-
#define _GTP_H
2+
#define _GTP_H_
33

44
/* General GTP protocol related definitions. */
55

0 commit comments

Comments
 (0)