aboutsummaryrefslogtreecommitdiff
path: root/cache.h
diff options
context:
space:
mode:
authorJonathan Nieder <jrnieder@gmail.com>2011-02-22 22:43:23 +0000
committerJunio C Hamano <gitster@pobox.com>2011-02-22 16:51:21 -0800
commit046613c5465e4fc0611f93a5ef31d3815fb50c22 (patch)
tree6a0246f9f004485eadebd3e709738873a22e17f1 /cache.h
parentb3c0494aa9b375033415ab1f815246e79d3d2029 (diff)
downloadgit-046613c5465e4fc0611f93a5ef31d3815fb50c22.tar.gz
git-046613c5465e4fc0611f93a5ef31d3815fb50c22.tar.xz
update-index --refresh --porcelain: add missing const
Signed-off-by: Jonathan Nieder <jrnieder@gmail.com> Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 'cache.h')
-rw-r--r--cache.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/cache.h b/cache.h
index 3abf8950b..4a758babe 100644
--- a/cache.h
+++ b/cache.h
@@ -511,7 +511,7 @@ extern void fill_stat_cache_info(struct cache_entry *ce, struct stat *st);
#define REFRESH_IGNORE_MISSING 0x0008 /* ignore non-existent */
#define REFRESH_IGNORE_SUBMODULES 0x0010 /* ignore submodules */
#define REFRESH_IN_PORCELAIN 0x0020 /* user friendly output, not "needs update" */
-extern int refresh_index(struct index_state *, unsigned int flags, const char **pathspec, char *seen, char *header_msg);
+extern int refresh_index(struct index_state *, unsigned int flags, const char **pathspec, char *seen, const char *header_msg);
struct lock_file {
struct lock_file *next;