aboutsummaryrefslogtreecommitdiffstats
path: root/capture-pcap-util.h
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.h
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.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 */