Skip to content

Commit b295294

Browse files
committed
checkout: drop newline in error message
1 parent 99367df commit b295294

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/checkout.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1422,7 +1422,7 @@ static int blob_content_to_link(
14221422

14231423
if (data->can_symlink) {
14241424
if ((error = p_symlink(git_buf_cstr(&linktarget), path)) < 0)
1425-
giterr_set(GITERR_OS, "Could not create symlink %s\n", path);
1425+
giterr_set(GITERR_OS, "Could not create symlink %s", path);
14261426
} else {
14271427
error = git_futils_fake_symlink(git_buf_cstr(&linktarget), path);
14281428
}

0 commit comments

Comments
 (0)