diff options
author | Felix Fietkau <nbd@openwrt.org> | 2011-09-05 06:58:55 +0200 |
---|---|---|
committer | Felix Fietkau <nbd@openwrt.org> | 2011-09-05 06:58:55 +0200 |
commit | f69552b1f85f08e1ae3651f2bc1810aa2f5c1af7 (patch) | |
tree | 657c1fcd6fbc8fee4d41e9b784d20706df869e69 /config.c | |
parent | df13b3ade3f366446033214b3a85228005c014ea (diff) |
constify
Diffstat (limited to 'config.c')
-rw-r--r-- | config.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -140,7 +140,7 @@ config_parse_bridge_interface(struct uci_section *s) } void -config_set_state(struct config_state *state, struct blob_attr *attr) +config_set_state(struct config_state *state, const struct blob_attr *attr) { state->data = malloc(blob_pad_len(attr)); if (!state->data) |