diff options
author | Alexis La Goutte <alexis.lagoutte@gmail.com> | 2013-08-10 21:32:24 +0000 |
---|---|---|
committer | Alexis La Goutte <alexis.lagoutte@gmail.com> | 2013-08-10 21:32:24 +0000 |
commit | d2c0e56d941c10734390cf17b04654a9b1a8409c (patch) | |
tree | 3edaaf885e2622971fb154ca2b8ad7b809127ad4 | |
parent | d5fed8b085f73e864be2e9cb5d29bfe4de24c7f0 (diff) | |
download | wireshark-d2c0e56d941c10734390cf17b04654a9b1a8409c.tar.gz wireshark-d2c0e56d941c10734390cf17b04654a9b1a8409c.tar.bz2 wireshark-d2c0e56d941c10734390cf17b04654a9b1a8409c.zip |
Fix (-W)header-guard error found by clang 3.4
./packet-ldp.h:26:9: error: '__PACKET_LDP_H_' is used as a header guard here,
followed by #define of a different macro [-Werror,-Wheader-guard]
#ifndef __PACKET_LDP_H_
^~~~~~~~~~~~~~~
./packet-ldp.h:27:9: note: '__PACKET_LDP_H__' is defined here; did you mean
'__PACKET_LDP_H_'?
#define __PACKET_LDP_H__
^~~~~~~~~~~~~~~~
__PACKET_LDP_H_
svn path=/trunk/; revision=51285
-rw-r--r-- | epan/dissectors/packet-ldp.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/epan/dissectors/packet-ldp.h b/epan/dissectors/packet-ldp.h index 9da62e8ce3..230044242f 100644 --- a/epan/dissectors/packet-ldp.h +++ b/epan/dissectors/packet-ldp.h @@ -23,7 +23,7 @@ * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. */ -#ifndef __PACKET_LDP_H_ +#ifndef __PACKET_LDP_H__ #define __PACKET_LDP_H__ /* |