From 1401f46bb42d1eb6225a5e08543c06a5b18fd3b7 Mon Sep 17 00:00:00 2001 From: Carlos Rica Date: Wed, 18 Apr 2007 05:34:34 +0200 Subject: Use const qualifier for 'sha1' parameter in delete_ref function delete_ref function does not change the 'sha1' parameter. Non-const pointer causes a compiler warning if you call to the function using a const argument. Signed-off-by: Carlos Rica Signed-off-by: Junio C Hamano --- refs.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'refs.c') diff --git a/refs.c b/refs.c index d2b7b7fb5..d7be2841c 100644 --- a/refs.c +++ b/refs.c @@ -705,7 +705,7 @@ static int repack_without_ref(const char *refname) return commit_lock_file(&packlock); } -int delete_ref(const char *refname, unsigned char *sha1) +int delete_ref(const char *refname, const unsigned char *sha1) { struct ref_lock *lock; int err, i, ret = 0, flag = 0; -- cgit v1.2.1