aboutsummaryrefslogtreecommitdiffstats
path: root/epan/dissectors/packet-bluetooth-hci.h
diff options
context:
space:
mode:
authorAlexis La Goutte <alexis.lagoutte@gmail.com>2013-08-10 21:31:51 +0000
committerAlexis La Goutte <alexis.lagoutte@gmail.com>2013-08-10 21:31:51 +0000
commit178bc2212038a30507f452cf96e1d200c6007fe3 (patch)
tree13068229a3158b8ed54cfbee5277622a7b141a60 /epan/dissectors/packet-bluetooth-hci.h
parent9033f210c93026bd5c976b9a51c68901aff8b598 (diff)
Fix (-W)header-guard error found by clang 3.4
./packet-bluetooth-hci.h:24:9: error: '__PACKET_BLUETOOTH_HCI_H__' is used as a header guard here, followed by #define of a different macro [-Werror,-Wheader-guard] #ifndef __PACKET_BLUETOOTH_HCI_H__ ^~~~~~~~~~~~~~~~~~~~~~~~~~ ./packet-bluetooth-hci.h:25:9: note: '__PACKET_BLUETOOTH_HCI__H__' is defined here; did you mean '__PACKET_BLUETOOTH_HCI_H__'? #define __PACKET_BLUETOOTH_HCI__H__ ^~~~~~~~~~~~~~~~~~~~~~~~~~~ __PACKET_BLUETOOTH_HCI_H__ svn path=/trunk/; revision=51281
Diffstat (limited to 'epan/dissectors/packet-bluetooth-hci.h')
-rw-r--r--epan/dissectors/packet-bluetooth-hci.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/epan/dissectors/packet-bluetooth-hci.h b/epan/dissectors/packet-bluetooth-hci.h
index 5672a9d2d1..74c56a5b5d 100644
--- a/epan/dissectors/packet-bluetooth-hci.h
+++ b/epan/dissectors/packet-bluetooth-hci.h
@@ -22,7 +22,7 @@
*/
#ifndef __PACKET_BLUETOOTH_HCI_H__
-#define __PACKET_BLUETOOTH_HCI__H__
+#define __PACKET_BLUETOOTH_HCI_H__
#include <epan/wmem/wmem.h>