aboutsummaryrefslogtreecommitdiffstats
path: root/capture-pcap-util.h
diff options
context:
space:
mode:
authorstandel <standel@f5534014-38df-0310-8fa8-9805f1628bb7>2007-04-13 20:59:20 +0000
committerstandel <standel@f5534014-38df-0310-8fa8-9805f1628bb7>2007-04-13 20:59:20 +0000
commite46b0eadc6ecdbc25582f350fc92b78f91577bdf (patch)
tree55892c3ea425a10171d643c5c2995bbb76073387 /capture-pcap-util.h
parent87404e08d1c348c6e175d7e1fa672210ff40255f (diff)
fix gcc warning about qualifier types (const) which are discarded when arriving
at the pcap interface. git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@21417 f5534014-38df-0310-8fa8-9805f1628bb7
Diffstat (limited to 'capture-pcap-util.h')
-rw-r--r--capture-pcap-util.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/capture-pcap-util.h b/capture-pcap-util.h
index 5f824135d7..545231704d 100644
--- a/capture-pcap-util.h
+++ b/capture-pcap-util.h
@@ -85,7 +85,7 @@ typedef struct {
char *description; /* descriptive name from wiretap e.g. "Ethernet", NULL if unknown */
} data_link_info_t;
-GList *get_pcap_linktype_list(const char *devname, char **err_str);
+GList *get_pcap_linktype_list(char *devname, char **err_str);
void free_pcap_linktype_list(GList *linktype_list);
/* get/set the link type of an interface */