summaryrefslogtreecommitdiff
path: root/compat/mingw.c
diff options
context:
space:
mode:
authorDaniël Haazen <danielhaazen@hotmail.com>2022-12-19 02:26:50 (GMT)
committerJunio C Hamano <gitster@pobox.com>2022-12-20 00:32:46 (GMT)
commit4eb1ccecd4f809d0e783b941ed1283ecb2778e09 (patch)
tree7b7a8a0f4ccb8ed5e870dd6ca0ed740909563d89 /compat/mingw.c
parent83d5e3341b69b3116675f13d2fab208a12c79e27 (diff)
downloadgit-4eb1ccecd4f809d0e783b941ed1283ecb2778e09.zip
git-4eb1ccecd4f809d0e783b941ed1283ecb2778e09.tar.gz
git-4eb1ccecd4f809d0e783b941ed1283ecb2778e09.tar.bz2
mingw: fix typo in an error message from ownership check
When a repository is on a FAT32 file system, the user sees a message that the path ownership cannot be determined. Fix a typo in the message. Signed-off-by: Daniël Haazen <danielhaazen@hotmail.com> Signed-off-by: Junio C Hamano <gitster@pobox.com>
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 901375d..9e59a56 100644
--- a/compat/mingw.c
+++ b/compat/mingw.c
@@ -2749,7 +2749,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;