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 | |
parent | df13b3ade3f366446033214b3a85228005c014ea (diff) |
constify
-rw-r--r-- | config.c | 2 | ||||
-rw-r--r-- | config.h | 2 |
2 files changed, 2 insertions, 2 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) @@ -28,7 +28,7 @@ struct config_state { unsigned int version; }; -void config_set_state(struct config_state *state, struct blob_attr *attr); +void config_set_state(struct config_state *state, const struct blob_attr *attr); #endif |