]> git.droids-corp.org - libcmdline.git/blobdiff - src/extension_example/parse_obj_list.c
misc: fix compilation with new gcc (unused variables warnings)
[libcmdline.git] / src / extension_example / parse_obj_list.c
index 34772b971f5595c80a7a1c8756796769af91ad58..9c1e820dd849c4dca6bd8e1fc2e1088936daff85 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;