aboutsummaryrefslogtreecommitdiffstats
path: root/tap-sipstat.c
diff options
context:
space:
mode:
authorguy <guy@f5534014-38df-0310-8fa8-9805f1628bb7>2005-06-24 01:32:42 +0000
committerguy <guy@f5534014-38df-0310-8fa8-9805f1628bb7>2005-06-24 01:32:42 +0000
commit14c8918e1dbf61078daaa1e27139aaeadcd447d0 (patch)
tree20224aded670da90d23f114f2289164b2314c07e /tap-sipstat.c
parenta12d13132828f8d92e4ab867ed29db8a10af2613 (diff)
Constify a bunch of structure members and function arguments, to squelch
compiler warnings. Clean up indentation. git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@14739 f5534014-38df-0310-8fa8-9805f1628bb7
Diffstat (limited to 'tap-sipstat.c')
-rw-r--r--tap-sipstat.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/tap-sipstat.c b/tap-sipstat.c
index 423df3ef59..2aa6bdf8ae 100644
--- a/tap-sipstat.c
+++ b/tap-sipstat.c
@@ -55,7 +55,7 @@ typedef struct _sip_stats_t {
typedef struct _sip_response_code_t {
guint32 packets; /* 3 */
guint response_code; /* 404 */
- gchar *name; /* Not Found */
+ const gchar *name; /* Not Found */
sipstat_t *sp;
} sip_response_code_t;