diff options
author | Luiz Fernando N. Capitulino <lcapitulino@mandriva.com.br> | 2007-04-25 16:18:08 +0200 |
---|---|---|
committer | Junio C Hamano <junkio@cox.net> | 2007-04-25 22:15:59 +0200 |
commit | efbc5831264fbe3696e6fc264bba9319265d7344 (patch) | |
tree | 1fc6fe6068ecef2c3ef956f332433dac6245b4ad /cache.h | |
parent | remove_subtree(): Use strerror() when possible (diff) | |
download | git-efbc5831264fbe3696e6fc264bba9319265d7344.tar.xz git-efbc5831264fbe3696e6fc264bba9319265d7344.zip |
entry.c: Use const qualifier for 'struct checkout' parameters
Signed-off-by: Luiz Fernando N. Capitulino <lcapitulino@mandriva.com.br>
Signed-off-by: Junio C Hamano <junkio@cox.net>
Diffstat (limited to 'cache.h')
-rw-r--r-- | cache.h | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -409,7 +409,7 @@ struct checkout { refresh_cache:1; }; -extern int checkout_entry(struct cache_entry *ce, struct checkout *state, char *topath); +extern int checkout_entry(struct cache_entry *ce, const struct checkout *state, char *topath); extern struct alternate_object_database { struct alternate_object_database *next; |