misc: fix compilation with new gcc (unused variables warnings)
authorOlivier Matz <zer0@droids-corp.org>
Fri, 29 Jul 2011 18:45:11 +0000 (20:45 +0200)
committerOlivier Matz <zer0@droids-corp.org>
Fri, 29 Jul 2011 18:45:11 +0000 (20:45 +0200)
Signed-off-by: Olivier Matz <zer0@droids-corp.org>
src/extension_example/parse_obj_list.c
src/genconf/commands.c
src/genconf/confnode_intconfig.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;
index 1db4595..b18c1c7 100644 (file)
@@ -504,10 +504,10 @@ static void cmd_show_node_parsed(void *parsed_result,
 {
        struct cmd_show_node_result *res = parsed_result;
        struct confnode *n = res->node;
-       int details = 0;
+       /* int details = 0; */
 
-       if (data)
-               details = 1;
+       /* if (data) */
+       /*      details = 1; */
 
        while (n) {
                confnode_display_long(n);
index 7d759cc..d5f732e 100644 (file)
@@ -112,7 +112,8 @@ static int confnode_intconfig_set_user_strvalue(struct confnode *n,
                                                const char *strvalue)
 {
        char *end = NULL;
-       int val;
+       int val __attribute__((unused));
+
        /* XXX support hex and bin */
        val = strtoul(strvalue, &end, 0);
        if ((strvalue[0] == '\0') || (end == NULL) || (*end != '\0'))
@@ -140,7 +141,8 @@ static int confnode_intconfig_set_default_strvalue(struct confnode *n,
                                              const char *strvalue)
 {
        char *end = NULL;
-       int val;
+       int val __attribute__((unused));
+
        /* XXX support hex and bin */
        val = strtoul(strvalue, &end, 0);
        if ((strvalue[0] == '\0') || (end == NULL) || (*end != '\0'))