Andrew's git
/
gitweb.git
/ diff
summary
|
log
|
commit
| diff |
tree
commit
grep
author
committer
pickaxe
?
re
checkout: remove superfluous local variable
author
Stefan Beller
<stefanbeller@googlemail.com>
Sat, 3 Aug 2013 11:51:21 +0000
(13:51 +0200)
committer
Junio C Hamano
<gitster@pobox.com>
Mon, 5 Aug 2013 18:32:19 +0000
(11:32 -0700)
Signed-off-by: Stefan Beller <stefanbeller@googlemail.com>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
builtin/checkout.c
patch
|
blob
|
history
raw
|
patch
|
inline
| side by side (parent:
b7df098
)
diff --git
a/builtin/checkout.c
b/builtin/checkout.c
index 8b48f4adbc2a4d021dbdef9912c7802b1468b0b3..ed39cecf9a80e4e770684b7c5ceb2d117ffbb281 100644
(file)
--- a/
builtin/checkout.c
+++ b/
builtin/checkout.c
@@
-228,8
+228,6
@@
static int checkout_paths(const struct checkout_opts *opts,
int flag;
struct commit *head;
int errs = 0;
int flag;
struct commit *head;
int errs = 0;
- int stage = opts->writeout_stage;
- int merge = opts->merge;
int newfd;
struct lock_file *lock_file;
int newfd;
struct lock_file *lock_file;
@@
-327,8
+325,8
@@
static int checkout_paths(const struct checkout_opts *opts,
continue;
if (opts->force) {
warning(_("path '%s' is unmerged"), ce->name);
continue;
if (opts->force) {
warning(_("path '%s' is unmerged"), ce->name);
- } else if (stage) {
- errs |= check_stage(stage, ce, pos);
+ } else if (
opts->writeout_
stage) {
+ errs |= check_stage(
opts->writeout_
stage, ce, pos);
} else if (opts->merge) {
errs |= check_stages((1<<2) | (1<<3), ce, pos);
} else {
} else if (opts->merge) {
errs |= check_stages((1<<2) | (1<<3), ce, pos);
} else {
@@
-352,9
+350,9
@@
static int checkout_paths(const struct checkout_opts *opts,
errs |= checkout_entry(ce, &state, NULL);
continue;
}
errs |= checkout_entry(ce, &state, NULL);
continue;
}
- if (stage)
- errs |= checkout_stage(stage, ce, pos, &state);
- else if (merge)
+ if (
opts->writeout_
stage)
+ errs |= checkout_stage(
opts->writeout_
stage, ce, pos, &state);
+ else if (
opts->
merge)
errs |= checkout_merged(pos, &state);
pos = skip_same_name(ce, pos) - 1;
}
errs |= checkout_merged(pos, &state);
pos = skip_same_name(ce, pos) - 1;
}