]> sourceware.org Git - lvm2.git/commitdiff
cleanup: avoid double assign
authorZdenek Kabelac <zkabelac@redhat.com>
Tue, 19 Aug 2014 12:19:11 +0000 (14:19 +0200)
committerZdenek Kabelac <zkabelac@redhat.com>
Tue, 19 Aug 2014 12:33:06 +0000 (14:33 +0200)
Skip setting a value to a variable which is never
used and overwritten/set afterwards.

lib/activate/activate.c
lib/display/display.c
lib/locking/cluster_locking.c
lib/misc/lvm-flock.c
libdaemon/server/daemon-server.c
libdm/libdm-report.c
tools/dmsetup.c

index 1230c9aa041b46a089376512f7db06d2f72e802c..9a4a1c33666c78475a2577cff20a505a0339fca3 100644 (file)
@@ -2325,7 +2325,7 @@ int lv_activate_with_filter(struct cmd_context *cmd, const char *lvid_s, int exc
 
 int lv_mknodes(struct cmd_context *cmd, const struct logical_volume *lv)
 {
-       int r = 1;
+       int r;
 
        if (!lv) {
                r = dm_mknodes(NULL);
index cfd83c91a6993b2c2b6d98dbae897d620b49ecb5..6cdd07b8b2e2716bf45b9ef7dba0f5454acb8395 100644 (file)
@@ -113,7 +113,7 @@ static const char *_display_size(const struct cmd_context *cmd,
 {
        unsigned base = BASE_UNKNOWN;
        unsigned s;
-       int suffix = 1, precision;
+       int suffix, precision;
        uint64_t byte = UINT64_C(0);
        uint64_t units = UINT64_C(1024);
        char *size_buf = NULL;
index 8070014c799265268eaeeebacf1784a2940dd0b2..0a11262f7bb1dfe2b243854e7660b77fe8286d08 100644 (file)
@@ -419,7 +419,7 @@ static int _lock_resource(struct cmd_context *cmd, const char *resource,
        char lockname[PATH_MAX];
        int clvmd_cmd = 0;
        const char *lock_scope;
-       const char *lock_type = "";
+       const char *lock_type;
 
        assert(strlen(resource) < sizeof(lockname));
        assert(resource);
index 8b70a0cae35da3c199896e55e371cdc8d8f252de..252fec3feb77ab6c2e9a9878724cd8c01ece1d90 100644 (file)
@@ -93,7 +93,7 @@ void release_flocks(int unlock)
 
 static int _do_flock(const char *file, int *fd, int operation, uint32_t nonblock)
 {
-       int r = 1;
+       int r;
        int old_errno;
        struct stat buf1, buf2;
 
index 3b390a3f7b48c3176f8d6fb501e4d740891ca10c..a8afcc1dede177310f63be6c0041817256d565e5 100644 (file)
@@ -205,7 +205,7 @@ out:
 
 static int _open_socket(daemon_state s)
 {
-       int fd = -1;
+       int fd;
        int file_created = 0;
        struct sockaddr_un sockaddr = { .sun_family = AF_UNIX };
        struct stat buf;
index 9363a9281c3e9fd3d255bafedd4765043cd623d4..155ac601052bc1d0d602fc94429f0e202e94990d 100644 (file)
@@ -1278,7 +1278,7 @@ static int _cmp_field_string_list_subset_all(const struct str_list_sort_value *v
                                             const struct selection_str_list *sel)
 {
        struct dm_str_list *sel_item;
-       unsigned int i = 1, last_found = 1;;
+       unsigned int i, last_found = 1;;
        int r = 0;
 
        /* if value has no items and selection has at leas one, it's clear there's no match */
index 8f64bfce6452848f241eb3452fac7c7718003a14..6cbd21c33079527ddfce8ec1cfc37018621c2195 100644 (file)
@@ -897,7 +897,7 @@ static int _setgeometry(CMD_ARGS)
 static int _splitname(CMD_ARGS)
 {
        struct dmsetup_report_obj obj;
-       int r = 1;
+       int r;
 
        obj.task = NULL;
        obj.info = NULL;
This page took 0.059427 seconds and 5 git commands to generate.