diff options
author | Guy Harris <guy@alum.mit.edu> | 2008-06-25 09:12:35 +0000 |
---|---|---|
committer | Guy Harris <guy@alum.mit.edu> | 2008-06-25 09:12:35 +0000 |
commit | 83fc9d5e0952b79aa59f2676f73c54893c0c7a56 (patch) | |
tree | 2f52b71c5dec33e0ee6a1b48d6420269ab845ee2 /epan/gcp.h | |
parent | 044e57c91780795ada89b9a5cd50cf0f53eadfc2 (diff) | |
download | wireshark-83fc9d5e0952b79aa59f2676f73c54893c0c7a56.tar.gz wireshark-83fc9d5e0952b79aa59f2676f73c54893c0c7a56.tar.bz2 wireshark-83fc9d5e0952b79aa59f2676f73c54893c0c7a56.zip |
Constify a bunch of stuff, to squelch -Wwrite-strings warnings.
epan/dissectors/packet-ncp2222.inc is a bit hard to fix, so we're not
ready to enable that warning by default yet.
Throw in some casts to handle GLib routines that take arbitrary
non-const pointers (they can later return the pointers, and some
callers might want to modify or free up those pointers in cases where
they're known to be writable or allocated).
Use ep_tvb_memdup() rather than a combination of ep_alloc() and
tvb_memcpy().
Clean up some indentation.
svn path=/trunk/; revision=25601
Diffstat (limited to 'epan/gcp.h')
-rw-r--r-- | epan/gcp.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/epan/gcp.h b/epan/gcp.h index daf34cf6ee..b591f30f63 100644 --- a/epan/gcp.h +++ b/epan/gcp.h @@ -150,9 +150,9 @@ typedef enum _gcp_wildcard_t { } gcp_wildcard_t; typedef struct _gcp_term_t { - gchar* str; + const gchar* str; - guint8* buffer; + const guint8* buffer; guint len; guint type; |