diff options
author | Guy Harris <guy@alum.mit.edu> | 2012-06-11 16:09:18 -0700 |
---|---|---|
committer | Guy Harris <guy@alum.mit.edu> | 2012-06-11 16:09:18 -0700 |
commit | 1acc5f33cf1e172c4347257cf2b1f52753e2e7ca (patch) | |
tree | eb6f050865b4889f43da14749aabd6a1c9fa57ff /pcap-bt-linux.c | |
parent | d25824540ebc7d5eec33852395b418e03ad91909 (diff) |
And un-constify some others.
Diffstat (limited to 'pcap-bt-linux.c')
-rw-r--r-- | pcap-bt-linux.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/pcap-bt-linux.c b/pcap-bt-linux.c index 254ab976..c951a7e2 100644 --- a/pcap-bt-linux.c +++ b/pcap-bt-linux.c @@ -137,7 +137,8 @@ done: pcap_t * bt_create(const char *device, char *ebuf, int *is_ours) { - const char *cp, *cpend; + const char *cp; + char *cpend; long devnum; pcap_t *p; |