aboutsummaryrefslogtreecommitdiffstats
path: root/capture-pcap-util.c
diff options
context:
space:
mode:
authorSebastien Tandel <sebastien@tandel.be>2007-04-13 20:59:20 +0000
committerSebastien Tandel <sebastien@tandel.be>2007-04-13 20:59:20 +0000
commit2371ad2eb062f71c71e2a11954d361e4df7a94cc (patch)
tree55892c3ea425a10171d643c5c2995bbb76073387 /capture-pcap-util.c
parentbe81a9cabbd461456835c0f397c90fad9e494573 (diff)
fix gcc warning about qualifier types (const) which are discarded when arriving
at the pcap interface. svn path=/trunk/; revision=21417
Diffstat (limited to 'capture-pcap-util.c')
-rw-r--r--capture-pcap-util.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/capture-pcap-util.c b/capture-pcap-util.c
index 2a5ae50bcf..e19ff4c590 100644
--- a/capture-pcap-util.c
+++ b/capture-pcap-util.c
@@ -354,7 +354,7 @@ create_data_link_info(int dlt)
}
GList *
-get_pcap_linktype_list(const char *devname, char **err_str)
+get_pcap_linktype_list(char *devname, char **err_str)
{
GList *linktype_list = NULL;
pcap_t *pch;