summaryrefslogtreecommitdiff
path: root/compat/mingw.c
diff options
context:
space:
mode:
authorJunio C Hamano <gitster@pobox.com>2023-01-05 06:07:18 (GMT)
committerJunio C Hamano <gitster@pobox.com>2023-01-05 06:07:18 (GMT)
commit3eac69d2677431803ea696f73fe33d44fbb6c214 (patch)
treecc1780cee90bef0ac1a2ef8f1534874ee198c993 /compat/mingw.c
parent1f9b02b970538e14086d07d6a8cc219259420a6f (diff)
parent4eb1ccecd4f809d0e783b941ed1283ecb2778e09 (diff)
downloadgit-3eac69d2677431803ea696f73fe33d44fbb6c214.zip
git-3eac69d2677431803ea696f73fe33d44fbb6c214.tar.gz
git-3eac69d2677431803ea696f73fe33d44fbb6c214.tar.bz2
Merge branch 'dh/mingw-ownership-check-typofix'
Error message typofix. * dh/mingw-ownership-check-typofix: mingw: fix typo in an error message from ownership check
Diffstat (limited to 'compat/mingw.c')
-rw-r--r--compat/mingw.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/compat/mingw.c b/compat/mingw.c
index d614f15..af397e6 100644
--- a/compat/mingw.c
+++ b/compat/mingw.c
@@ -2752,7 +2752,7 @@ int is_path_owned_by_current_sid(const char *path, struct strbuf *report)
/*
* On FAT32 volumes, ownership is not actually recorded.
*/
- strbuf_addf(report, "'%s' is on a file system that does"
+ strbuf_addf(report, "'%s' is on a file system that does "
"not record ownership\n", path);
} else if (report) {
LPSTR str1, str2, to_free1 = NULL, to_free2 = NULL;