aboutsummaryrefslogtreecommitdiffstats
path: root/epan/dissectors/packet-idp.h
diff options
context:
space:
mode:
authorAlexis La Goutte <alexis.lagoutte@gmail.com>2013-08-10 21:32:16 +0000
committerAlexis La Goutte <alexis.lagoutte@gmail.com>2013-08-10 21:32:16 +0000
commitd5fed8b085f73e864be2e9cb5d29bfe4de24c7f0 (patch)
tree0a57ba71e72f17d366c30ea3889732b0e14359cf /epan/dissectors/packet-idp.h
parent857f89a68115443428444e6e35555ab2f8759afa (diff)
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
Diffstat (limited to 'epan/dissectors/packet-idp.h')
-rw-r--r--epan/dissectors/packet-idp.h2
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