Clean 'unused variable' warnings
authorLucas De Marchi <lucas.demarchi@profusion.mobi>
Fri, 2 Dec 2011 12:02:05 +0000 (10:02 -0200)
committerLucas De Marchi <lucas.demarchi@profusion.mobi>
Fri, 2 Dec 2011 12:02:05 +0000 (10:02 -0200)
libkmod/libkmod-config.c
libkmod/libkmod.c

index 462250d..fd57b1d 100644 (file)
@@ -81,17 +81,16 @@ static struct kmod_list *free_alias(struct kmod_ctx *ctx, struct kmod_list *l)
 }
 
 static struct kmod_list *add_blacklist(struct kmod_ctx *ctx,
-                                       struct kmod_list *blacklists,
+                                       struct kmod_list *blacklist,
                                        const char *modname)
 {
-       struct kmod_blacklist *blacklist;
        char *p;
 
        DBG(ctx, "modname=%s\n", modname);
 
        p = strdup(modname);
 
-       return kmod_list_append(blacklists, p);
+       return kmod_list_append(blacklist, p);
 }
 
 static struct kmod_list *free_blacklist(struct kmod_ctx *ctx,
index ce7ef3c..7dd4579 100644 (file)
@@ -274,10 +274,9 @@ static int kmod_lookup_alias_from_alias_bin(struct kmod_ctx *ctx,
                                                struct kmod_list **list)
 {
        char *fn;
-       int err, nmatch = 0, i;
+       int err, nmatch = 0;
        struct index_file *idx;
        struct index_value *realnames, *realname;
-       struct kmod_list *l;
 
        if (asprintf(&fn, "%s/%s.bin", ctx->dirname, file) < 0)
                return -ENOMEM;
@@ -341,7 +340,7 @@ static const char *moddep_file = "modules.dep";
 int kmod_lookup_alias_from_moddep_file(struct kmod_ctx *ctx, const char *name,
                                                struct kmod_list **list)
 {
-       char *fn, *line, *p;
+       char *fn, *line;
        struct index_file *idx;
        int n = 0;