From 2889b724cc7b37c0a0b6d9d402ecd4f04e7b2560 Mon Sep 17 00:00:00 2001 From: Edward Thomson Date: Wed, 14 Jan 2015 13:20:21 -0500 Subject: checkout: drop newline in error message --- src/checkout.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/checkout.c b/src/checkout.c index 9ade1552f..6bd2c0a8c 100644 --- a/src/checkout.c +++ b/src/checkout.c @@ -1351,7 +1351,7 @@ static int blob_content_to_link( if (data->can_symlink) { if ((error = p_symlink(git_buf_cstr(&linktarget), path)) < 0) - giterr_set(GITERR_OS, "Could not create symlink %s\n", path); + giterr_set(GITERR_OS, "Could not create symlink %s", path); } else { error = git_futils_fake_symlink(git_buf_cstr(&linktarget), path); } -- cgit v1.2.1