[PATCH] Remove redundant assignments
From: Jan Stępień <hidden>
Date: 2016-06-15 22:52:32
Subsystem:
the rest · Maintainer:
Linus Torvalds
From: Jan Stępień <hidden>
Date: 2016-06-15 22:52:32
Subsystem:
the rest · Maintainer:
Linus Torvalds
There were two redundant variable assignments in transport.c and wt-status.c. Removing them hasn't introduced any compiler warnings or regressions. Signed-off-by: Jan Stępień <redacted> --- transport.c | 2 +- wt-status.c | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-)
diff --git a/transport.c b/transport.c
index 51814b5..5143718 100644
--- a/transport.c
+++ b/transport.c@@ -105,7 +105,7 @@ static void insert_packed_refs(const char *packed_refs, struct ref **list) return; for (;;) { - int cmp = cmp, len; + int cmp, len; if (!fgets(buffer, sizeof(buffer), f)) { fclose(f);
diff --git a/wt-status.c b/wt-status.c
index 70fdb76..35f61f4 100644
--- a/wt-status.c
+++ b/wt-status.c@@ -229,7 +229,7 @@ static void wt_status_print_change_data(struct wt_status *s, { struct wt_status_change_data *d = it->util; const char *c = color(change_type, s); - int status = status; + int status; char *one_name; char *two_name; const char *one, *two;
--
1.7.7.4