From: David Rientjes Date: Mon, 14 Aug 2006 20:20:12 +0000 (-0700) Subject: Make checkout_all void. X-Git-Tag: v1.4.3-rc1~245 X-Git-Url: https://git.tokkee.org/?a=commitdiff_plain;h=f7f0fbfcf4fb9367a12aba3a205fb5e1276a2800;p=git.git Make checkout_all void. Signed-off-by: David Rientjes Signed-off-by: Junio C Hamano --- diff --git a/builtin-checkout-index.c b/builtin-checkout-index.c index 8d0dbad49..6b55f931c 100644 --- a/builtin-checkout-index.c +++ b/builtin-checkout-index.c @@ -122,7 +122,7 @@ static int checkout_file(const char *name, int prefix_length) return -1; } -static int checkout_all(const char *prefix, int prefix_length) +static void checkout_all(const char *prefix, int prefix_length) { int i, errs = 0; struct cache_entry* last_ce = NULL; @@ -153,7 +153,6 @@ static int checkout_all(const char *prefix, int prefix_length) * exit with the same code as die(). */ exit(128); - return 0; } static const char checkout_cache_usage[] =