1
0
Fork 0

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>
hifive-unleashed-5.1
Colin Ian King 2016-07-24 19:24:09 +01:00 committed by David S. Miller
parent 779d1436fa
commit 9b8ac4f9dd
1 changed files with 1 additions and 1 deletions

View File

@ -1,5 +1,5 @@
#ifndef _GTP_H_
#define _GTP_H
#define _GTP_H_
/* General GTP protocol related definitions. */