]> git.ipfire.org Git - thirdparty/util-linux.git/commitdiff
various: fix shadow declarations [smatch scan]
authorSami Kerola <kerolasa@iki.fi>
Mon, 8 Apr 2013 19:32:50 +0000 (20:32 +0100)
committerKarel Zak <kzak@redhat.com>
Tue, 9 Apr 2013 10:19:25 +0000 (12:19 +0200)
libmount/src/tab.c:990:34: warning: symbol 'fs' shadows an earlier one
libmount/src/tab.c:970:26: originally declared here
misc-utils/findmnt.c:492:30: warning: symbol 'tmp' shadows an earlier one
misc-utils/findmnt.c:473:14: originally declared here
fdisks/fdiskdoslabel.c:211:36: warning: symbol 'pe' shadows an earlier one
fdisks/fdiskdoslabel.c:180:20: originally declared here
fdisks/fdiskdoslabel.c:639:34: warning: symbol 'i' shadows an earlier one
fdisks/fdiskdoslabel.c:578:16: originally declared here
fdisks/fdiskdoslabel.c:947:21: warning: symbol 'i' shadows an earlier one
fdisks/fdiskdoslabel.c:924:16: originally declared here
fdisks/fdiskdoslabel.c:976:29: warning: symbol 'i' shadows an earlier one
fdisks/fdiskdoslabel.c:924:16: originally declared here
fdisks/fdiskdoslabel.c:984:29: warning: symbol 'i' shadows an earlier one
fdisks/fdiskdoslabel.c:924:16: originally declared here

[kzak@redhat.com: - don't use local 'tmp' in findmnt.c]

Signed-off-by: Sami Kerola <kerolasa@iki.fi>
Signed-off-by: Karel Zak <kzak@redhat.com>
fdisks/fdiskdoslabel.c
libmount/src/tab.c
misc-utils/findmnt.c

index e2ec0d3b4b7b3348fa7425a729d0a7ee2fd7bdec..fe04ac7dc1619848c7a95499384db4f6d78f32a3 100644 (file)
@@ -208,14 +208,14 @@ static int dos_delete_partition(struct fdisk_context *cxt, size_t partnum)
                        ptes[partnum-1].changed = 1;
                } else if (cxt->label->nparts_max > 5) {    /* 5 will be moved to 4 */
                        /* the first logical in a longer chain */
-                       struct pte *pe = &ptes[5];
+                       struct pte *pete = &ptes[5];
 
-                       if (pe->part_table) /* prevent SEGFAULT */
-                               set_start_sect(pe->part_table,
-                                              get_partition_start(pe) -
+                       if (pete->part_table) /* prevent SEGFAULT */
+                               set_start_sect(pete->part_table,
+                                              get_partition_start(pete) -
                                               extended_offset);
-                       pe->offset = extended_offset;
-                       pe->changed = 1;
+                       pete->offset = extended_offset;
+                       pete->changed = 1;
                }
 
                if (cxt->label->nparts_max > 5) {
@@ -636,14 +636,14 @@ static int add_partition(struct fdisk_context *cxt, int n, struct fdisk_parttype
                        read = 0;
                }
                if (!read && start == temp) {
-                       sector_t i = start;
+                       sector_t j = start;
 
-                       start = read_int(cxt, cround(cxt, i), cround(cxt, dflt),
+                       start = read_int(cxt, cround(cxt, j), cround(cxt, dflt),
                                        cround(cxt, limit),
                                         0, mesg);
                        if (fdisk_context_use_cylinders(cxt)) {
                                start = (start - 1) * fdisk_context_get_units_per_sector(cxt);
-                               if (start < i) start = i;
+                               if (start < j) start = j;
                        }
                        read = 1;
                }
@@ -944,14 +944,14 @@ static int dos_add_partition(
                        printf(_("If you want to create more than four partitions, you must replace a\n"
                                 "primary partition with an extended partition first.\n"));
        } else if (cxt->label->nparts_max >= MAXIMUM_PARTS) {
-               int i;
+               int j;
 
                printf(_("All logical partitions are in use\n"));
                printf(_("Adding a primary partition\n"));
 
-               i = get_partition_unused_primary(cxt);
-               if (i >= 0)
-                       rc = add_partition(cxt, i, t);
+               j = get_partition_unused_primary(cxt);
+               if (j >= 0)
+                       rc = add_partition(cxt, j, t);
        } else {
                char c, line[LINE_LENGTH];
                int dflt;
@@ -973,18 +973,18 @@ static int dos_add_partition(
                        printf(_("Using default response %c\n"), c);
                }
                if (c == 'p') {
-                       int i = get_partition_unused_primary(cxt);
-                       if (i >= 0)
-                               rc = add_partition(cxt, i, t);
+                       int j = get_partition_unused_primary(cxt);
+                       if (j >= 0)
+                               rc = add_partition(cxt, j, t);
                        goto done;
                } else if (c == 'l' && extended_offset) {
                        rc = add_logical(cxt);
                        goto done;
                } else if (c == 'e' && !extended_offset) {
-                       int i = get_partition_unused_primary(cxt);
-                       if (i >= 0) {
+                       int j = get_partition_unused_primary(cxt);
+                       if (j >= 0) {
                                t = fdisk_get_parttype_from_code(cxt, EXTENDED);
-                               rc = add_partition(cxt, i, t);
+                               rc = add_partition(cxt, j, t);
                        }
                        goto done;
                } else
index 9d524c1c178165a0ab7fe7b14f841313dbeca510..11a297814fd4c4b9fe0075269da1545a7833cbad 100644 (file)
@@ -987,15 +987,15 @@ int mnt_table_is_fs_mounted(struct libmnt_table *tb, struct libmnt_fs *fstab_fs)
 
        if (is_mountinfo(tb)) {
                /* @tb is mountinfo, so we can try to use fs-roots */
-               struct libmnt_fs *fs;
+               struct libmnt_fs *rootfs;
                int flags = 0;
 
                if (mnt_fs_get_option(fstab_fs, "bind", NULL, NULL) == 0)
                        flags = MS_BIND;
 
-               fs = mnt_table_get_fs_root(tb, fstab_fs, flags, &root);
-               if (fs)
-                       src = mnt_fs_get_srcpath(fs);
+               rootfs = mnt_table_get_fs_root(tb, fstab_fs, flags, &root);
+               if (rootfs)
+                       src = mnt_fs_get_srcpath(rootfs);
        }
 
        if (!src)
index 2491799e9e175e87039560c66864745f452d17c3..4a3e760e76372c7091da065d9de30972e401aff9 100644 (file)
@@ -489,7 +489,6 @@ static const char *get_data(struct libmnt_fs *fs, int num)
                                str = mnt_resolve_spec(str, cache);
                }
                if (root && str && !(flags & FL_NOFSROOT) && strcmp(root, "/")) {
-                       char *tmp;
                        xasprintf(&tmp, "%s[%s]", str, root);
                        str = tmp;
                }