misc: fix compilation with new gcc (unused variables warnings)
[libcmdline.git] / src / extension_example / parse_obj_list.c
index 34772b9..9c1e820 100644 (file)
@@ -47,13 +47,10 @@ parse_obj_list(cmdline_parse_token_hdr_t *tk, const char *buf, void *res,
        struct token_obj_list *tk2 = (struct token_obj_list *)tk;
        struct token_obj_list_data *tkd = &tk2->obj_list_data;
        struct object *o;
-       unsigned int token_len = 0;
 
        if (res && ressize < sizeof(struct object *))
                return -1;
 
-       token_len = strlen(buf);
-
        SLIST_FOREACH(o, tkd->list, next) {
                if (strcmp(buf, o->name))
                        continue;