diff options
author | Felix Fietkau <nbd@openwrt.org> | 2012-06-10 17:32:54 +0200 |
---|---|---|
committer | Felix Fietkau <nbd@openwrt.org> | 2012-06-10 17:32:54 +0200 |
commit | 480c24c6df4446ba484228ecf3212fc6144a54bc (patch) | |
tree | 8d0dd8756f33932dddf4fe400e04b38a057f96ea | |
parent | c596f040369f0900e2818e249c00c44c33b6eb64 (diff) | |
download | unitd-480c24c6df4446ba484228ecf3212fc6144a54bc.tar unitd-480c24c6df4446ba484228ecf3212fc6144a54bc.zip |
fix typo
-rw-r--r-- | utils.h | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -17,10 +17,10 @@ struct blobmsg_list_node { }; #define blobmsg_list_simple_init(list) \ - __blobmsg_list_init(tree, 0, sizeof(struct blobmsg_list_node)) + __blobmsg_list_init(list, 0, sizeof(struct blobmsg_list_node)) #define blobmsg_list_init(list, type, field) \ - __blobmsg_list_init(tree, offsetof(type, field), sizeof(type)) + __blobmsg_list_init(list, offsetof(type, field), sizeof(type)) void __blobmsg_list_init(struct blobmsg_list *list, int offset, int len); int blobmsg_list_fill(struct blobmsg_list *list, void *data, int len); |