diff options
author | Alexis La Goutte <alexis.lagoutte@gmail.com> | 2013-08-10 21:32:16 +0000 |
---|---|---|
committer | Alexis La Goutte <alexis.lagoutte@gmail.com> | 2013-08-10 21:32:16 +0000 |
commit | d5fed8b085f73e864be2e9cb5d29bfe4de24c7f0 (patch) | |
tree | 0a57ba71e72f17d366c30ea3889732b0e14359cf | |
parent | 857f89a68115443428444e6e35555ab2f8759afa (diff) | |
download | wireshark-d5fed8b085f73e864be2e9cb5d29bfe4de24c7f0.tar.gz wireshark-d5fed8b085f73e864be2e9cb5d29bfe4de24c7f0.tar.bz2 wireshark-d5fed8b085f73e864be2e9cb5d29bfe4de24c7f0.zip |
Fix (-W)header-guard error found by clang 3.4
./packet-idp.h:25:9: error: '__PACKET_IDP_H__' is used as a header guard here,
followed by #define of a different macro [-Werror,-Wheader-guard]
#ifndef __PACKET_IDP_H__
^~~~~~~~~~~~~~~~
./packet-idp.h:26:9: note: '__PACKET_IPX_H__' is defined here; did you mean
'__PACKET_IDP_H__'?
#define __PACKET_IPX_H__
^~~~~~~~~~~~~~~~
__PACKET_IDP_H__
svn path=/trunk/; revision=51284
-rw-r--r-- | epan/dissectors/packet-idp.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/epan/dissectors/packet-idp.h b/epan/dissectors/packet-idp.h index 0b294fcbd7..384d02261a 100644 --- a/epan/dissectors/packet-idp.h +++ b/epan/dissectors/packet-idp.h @@ -23,7 +23,7 @@ */ #ifndef __PACKET_IDP_H__ -#define __PACKET_IPX_H__ +#define __PACKET_IDP_H__ #define IDP_PACKET_TYPE_RIP 1 #define IDP_PACKET_TYPE_ECHO 2 |