From 87d9869fc30951cec632e0d6a3d1dd47756d2886 Mon Sep 17 00:00:00 2001 From: Vicent Marti Date: Mon, 19 Sep 2011 03:34:49 +0300 Subject: Tabify everything There were quite a few places were spaces were being used instead of tabs. Try to catch them all. This should hopefully not break anything. Except for `git blame`. Oh well. --- src/errors.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/errors.c') diff --git a/src/errors.c b/src/errors.c index 45091e37f..60d774636 100644 --- a/src/errors.c +++ b/src/errors.c @@ -71,7 +71,7 @@ void git___rethrow(const char *msg, ...) va_end(va); old_error = strdup(g_last_error); - snprintf(g_last_error, sizeof(g_last_error), "%s \n - %s", new_error, old_error); + snprintf(g_last_error, sizeof(g_last_error), "%s \n - %s", new_error, old_error); free(old_error); } -- cgit v1.2.1