aboutsummaryrefslogtreecommitdiffstats
path: root/tap-iousers.c
diff options
context:
space:
mode:
authorjmayer <jmayer@f5534014-38df-0310-8fa8-9805f1628bb7>2005-07-23 11:41:25 +0000
committerjmayer <jmayer@f5534014-38df-0310-8fa8-9805f1628bb7>2005-07-23 11:41:25 +0000
commit23ec4b07a3224f817388301f64a3bea1066d828b (patch)
tree88cde02c2a8b79acb9a58e94d44b2cc686e12e9e /tap-iousers.c
parent8e1c6eea8800b9c6b9a52a7ee90a897fb6cda442 (diff)
More 'char*' -> 'const char*' changes to fix warnings.
git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@15015 f5534014-38df-0310-8fa8-9805f1628bb7
Diffstat (limited to 'tap-iousers.c')
-rw-r--r--tap-iousers.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/tap-iousers.c b/tap-iousers.c
index f20137e816..1b1499ae12 100644
--- a/tap-iousers.c
+++ b/tap-iousers.c
@@ -50,7 +50,7 @@
#include <string.h>
typedef struct _io_users_t {
- char *type;
+ const char *type;
char *filter;
struct _io_users_item_t *items;
} io_users_t;
@@ -582,7 +582,7 @@ void
iousers_init(char *optarg)
{
char *filter=NULL;
- char *tap_type, *tap_type_name;
+ const char *tap_type, *tap_type_name;
tap_packet_cb packet_func;
io_users_t *iu=NULL;
GString *error_string;