diff options
author | René Scharfe <l.s.r@web.de> | 2016-09-13 19:11:52 +0200 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2016-09-13 16:12:28 -0700 |
commit | ce25e4c78d38d88233f9b77ca8603c0bce74e8f1 (patch) | |
tree | b3b704d36651b4d81725ee6f1201c590dfacf0f1 /builtin | |
parent | Git 2.8.4 (diff) | |
download | tgif-ce25e4c78d38d88233f9b77ca8603c0bce74e8f1.tar.xz |
checkout: constify parameters of checkout_stage() and checkout_merged()
Document the fact that checkout_stage() and checkout_merged() don't
change the objects passed to them by adding the modifier const.
Signed-off-by: Rene Scharfe <l.s.r@web.de>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 'builtin')
-rw-r--r-- | builtin/checkout.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/builtin/checkout.c b/builtin/checkout.c index efcbd8f6b5..161f1636a6 100644 --- a/builtin/checkout.c +++ b/builtin/checkout.c @@ -154,8 +154,8 @@ static int check_stages(unsigned stages, const struct cache_entry *ce, int pos) return 0; } -static int checkout_stage(int stage, struct cache_entry *ce, int pos, - struct checkout *state) +static int checkout_stage(int stage, const struct cache_entry *ce, int pos, + const struct checkout *state) { while (pos < active_nr && !strcmp(active_cache[pos]->name, ce->name)) { @@ -169,7 +169,7 @@ static int checkout_stage(int stage, struct cache_entry *ce, int pos, return error(_("path '%s' does not have their version"), ce->name); } -static int checkout_merged(int pos, struct checkout *state) +static int checkout_merged(int pos, const struct checkout *state) { struct cache_entry *ce = active_cache[pos]; const char *path = ce->name; |