From 84fb9a4dca7efe1427c917e2f46a045e48180826 Mon Sep 17 00:00:00 2001 From: Linus Torvalds Date: Sun, 12 Jun 2005 21:04:27 -0700 Subject: git-apply: fix error handling for nonexistent files Missing argument for error() function. We should really use the gcc printf format checking capabilities. diff --git a/apply.c b/apply.c index 01bcb94..cf40e5d 100644 --- a/apply.c +++ b/apply.c @@ -989,7 +989,7 @@ static int check_patch(struct patch *patch) int changed; if (lstat(old_name, &st) < 0) - return error("%s: %s\n", strerror(errno)); + return error("%s: %s", old_name, strerror(errno)); if (check_index) { int pos = cache_name_pos(old_name, strlen(old_name)); if (pos < 0) -- cgit v0.10.2-6-g49f6