summaryrefslogtreecommitdiff
path: root/tap-httpstat.c
diff options
context:
space:
mode:
authorGuy Harris <guy@alum.mit.edu>2005-06-24 01:32:42 +0000
committerGuy Harris <guy@alum.mit.edu>2005-06-24 01:32:42 +0000
commit76258fe8e3484911401b2c70b48516b0eabfbbe0 (patch)
tree20224aded670da90d23f114f2289164b2314c07e /tap-httpstat.c
parent6f9d56ddd097bbae7fea6c1e242992aef88ab58b (diff)
downloadwireshark-76258fe8e3484911401b2c70b48516b0eabfbbe0.tar.gz
Constify a bunch of structure members and function arguments, to squelch
compiler warnings. Clean up indentation. svn path=/trunk/; revision=14739
Diffstat (limited to 'tap-httpstat.c')
-rw-r--r--tap-httpstat.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/tap-httpstat.c b/tap-httpstat.c
index a61ad8646a..df36c6930b 100644
--- a/tap-httpstat.c
+++ b/tap-httpstat.c
@@ -49,7 +49,7 @@ typedef struct _http_stats_t {
typedef struct _http_response_code_t {
guint32 packets; /* 3 */
guint response_code; /* 404 */
- gchar *name; /* Not Found */
+ const gchar *name; /* Not Found */
httpstat_t *sp;
} http_response_code_t;