summaryrefslogtreecommitdiff
path: root/config.h
diff options
context:
space:
mode:
Diffstat (limited to 'config.h')
-rw-r--r--config.h6
1 files changed, 4 insertions, 2 deletions
diff --git a/config.h b/config.h
index 6403e1f..83d7c25 100644
--- a/config.h
+++ b/config.h
@@ -15,10 +15,12 @@ union config_param_info {
};
struct config_param_list {
- const struct config_param_list *next;
- int n_params;
+ int n_params, n_next;
+
const struct blobmsg_policy *params;
const union config_param_info *info;
+
+ const struct config_param_list *next[];
};
#endif