mirror of
https://github.com/git/git
synced 2024-10-30 14:03:28 +00:00
builtin-merge: fix a typo in an error message
Signed-off-by: Allan Caffee <allan.caffee@gmail.com> Acked-by: Miklos Vajna <vmiklos@frugalware.org> Signed-off-by: Junio C Hamano <gitster@pobox.com>
This commit is contained in:
parent
c2318228ab
commit
345f6e2cb5
1 changed files with 1 additions and 1 deletions
|
@ -703,7 +703,7 @@ static int suggest_conflicts(void)
|
||||||
|
|
||||||
fp = fopen(git_path("MERGE_MSG"), "a");
|
fp = fopen(git_path("MERGE_MSG"), "a");
|
||||||
if (!fp)
|
if (!fp)
|
||||||
die("Could open %s for writing", git_path("MERGE_MSG"));
|
die("Could not open %s for writing", git_path("MERGE_MSG"));
|
||||||
fprintf(fp, "\nConflicts:\n");
|
fprintf(fp, "\nConflicts:\n");
|
||||||
for (pos = 0; pos < active_nr; pos++) {
|
for (pos = 0; pos < active_nr; pos++) {
|
||||||
struct cache_entry *ce = active_cache[pos];
|
struct cache_entry *ce = active_cache[pos];
|
||||||
|
|
Loading…
Reference in a new issue