From: Jonathan Nieder Date: Tue, 22 Feb 2011 22:43:22 +0000 (+0000) Subject: checkout: add missing const to describe_detached_head X-Git-Tag: v1.7.5-rc0~127 X-Git-Url: https://git.tokkee.org/?a=commitdiff_plain;h=b3c0494aa9b375033415ab1f815246e79d3d2029;p=git.git checkout: add missing const to describe_detached_head Signed-off-by: Jonathan Nieder Signed-off-by: Junio C Hamano --- diff --git a/builtin/checkout.c b/builtin/checkout.c index cd7f56e6c..bef324e47 100644 --- a/builtin/checkout.c +++ b/builtin/checkout.c @@ -297,7 +297,7 @@ static void show_local_changes(struct object *head, struct diff_options *opts) run_diff_index(&rev, 0); } -static void describe_detached_head(char *msg, struct commit *commit) +static void describe_detached_head(const char *msg, struct commit *commit) { struct strbuf sb = STRBUF_INIT; struct pretty_print_context ctx = {0};