diff options
author | Stephen Fisher <steve@stephen-fisher.com> | 2007-04-13 00:50:23 +0000 |
---|---|---|
committer | Stephen Fisher <steve@stephen-fisher.com> | 2007-04-13 00:50:23 +0000 |
commit | f002ac6db5099393872c7e041f78c85e95581195 (patch) | |
tree | 9a8c65d28fe753b2b56ab7b0bc138bbd074ab817 /epan/dissectors/packet-wcp.c | |
parent | 5f5f6561084a292b10f2712236aed087799167f2 (diff) | |
download | wireshark-f002ac6db5099393872c7e041f78c85e95581195.tar.gz wireshark-f002ac6db5099393872c7e041f78c85e95581195.tar.bz2 wireshark-f002ac6db5099393872c7e041f78c85e95581195.zip |
Fix various warnings
Move packet-cops.c out of clean dissectors due to a #define conflict
in the headers of net-snmp with our config.h
svn path=/trunk/; revision=21398
Diffstat (limited to 'epan/dissectors/packet-wcp.c')
-rw-r--r-- | epan/dissectors/packet-wcp.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/epan/dissectors/packet-wcp.c b/epan/dissectors/packet-wcp.c index 3c79a31b15..0a15706ab3 100644 --- a/epan/dissectors/packet-wcp.c +++ b/epan/dissectors/packet-wcp.c @@ -485,7 +485,7 @@ static tvbuff_t *wcp_uncompress( tvbuff_t *src_tvb, int offset, packet_info *pin tvbuff_t *volatile tvb = 0; wcp_window_t *buf_ptr = 0; wcp_pdata_t *volatile pdata_ptr; - gboolean bounds_error = FALSE; + volatile gboolean bounds_error = FALSE; buf_ptr = get_wcp_window_ptr( pinfo); |