Commit 186177a2 by Edward Thomson

checkout: drop newline in error message

parent dd3c53f1
...@@ -1326,7 +1326,7 @@ static int blob_content_to_link( ...@@ -1326,7 +1326,7 @@ static int blob_content_to_link(
if (data->can_symlink) { if (data->can_symlink) {
if ((error = p_symlink(git_buf_cstr(&linktarget), path)) < 0) 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 { } else {
error = git_futils_fake_symlink(git_buf_cstr(&linktarget), path); error = git_futils_fake_symlink(git_buf_cstr(&linktarget), path);
} }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment