diff options
author | Tobias Klauser <tklauser@distanz.ch> | 2013-07-31 09:19:27 +0200 |
---|---|---|
committer | Tobias Klauser <tklauser@distanz.ch> | 2013-07-31 09:43:37 +0200 |
commit | 514a4ae9fa544db72e3ea2fc6dcd3a9530b24127 (patch) | |
tree | b91a9203ca089216d44116db4e38ea91aca95a84 | |
parent | 7ca399bd639ab3059c80f2c0c946b64c06270b14 (diff) |
dev: Constify `ifname' parameter to device_up_and_running()
The parameter `ifname' to device_up_and_running() is never modified
inside the function, thus mark it as const.
Signed-off-by: Tobias Klauser <tklauser@distanz.ch>
-rw-r--r-- | dev.c | 2 | ||||
-rw-r--r-- | dev.h | 2 |
2 files changed, 2 insertions, 2 deletions
@@ -167,7 +167,7 @@ void device_set_flags(const char *ifname, const short flags) close(sock); } -int device_up_and_running(char *ifname) +int device_up_and_running(const char *ifname) { if (!ifname) return -EINVAL; @@ -10,7 +10,7 @@ extern int device_ifindex(const char *ifname); extern int device_type(const char *ifname); extern short device_get_flags(const char *ifname); extern void device_set_flags(const char *ifname, const short flags); -extern int device_up_and_running(char *ifname); +extern int device_up_and_running(const char *ifname); extern u32 device_bitrate(const char *ifname); #endif /* DEV_H */ |