diff options
author | Guy Harris <guy@alum.mit.edu> | 2008-02-21 12:30:26 +0000 |
---|---|---|
committer | Guy Harris <guy@alum.mit.edu> | 2008-02-21 12:30:26 +0000 |
commit | b7c2ead26a216e58671fef084505308e6fd34e23 (patch) | |
tree | 068c311e5becb2a7fb7f7bc69041fc67982a5dd2 /capture.c | |
parent | 89d7589f60b663ba61091d3da6ad0811b897dae4 (diff) | |
download | wireshark-b7c2ead26a216e58671fef084505308e6fd34e23.tar.gz wireshark-b7c2ead26a216e58671fef084505308e6fd34e23.tar.bz2 wireshark-b7c2ead26a216e58671fef084505308e6fd34e23.zip |
Constify some arguments.
svn path=/trunk/; revision=24407
Diffstat (limited to 'capture.c')
-rw-r--r-- | capture.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -695,7 +695,7 @@ capture_interface_list(int *err, char **err_str) /* XXX - We parse simple text output to get our interface list. Should * we use "real" data serialization instead, e.g. via XML? */ GList * -capture_pcap_linktype_list(gchar *ifname, char **err_str) +capture_pcap_linktype_list(const gchar *ifname, char **err_str) { GList *linktype_list = NULL; int err, i; |