Skip to content

Commit 4eb1cce

Browse files
Sheepolutiongitster
authored andcommitted
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 <[email protected]> Signed-off-by: Junio C Hamano <[email protected]>
1 parent 83d5e33 commit 4eb1cce

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

compat/mingw.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2749,7 +2749,7 @@ int is_path_owned_by_current_sid(const char *path, struct strbuf *report)
27492749
/*
27502750
* On FAT32 volumes, ownership is not actually recorded.
27512751
*/
2752-
strbuf_addf(report, "'%s' is on a file system that does"
2752+
strbuf_addf(report, "'%s' is on a file system that does "
27532753
"not record ownership\n", path);
27542754
} else if (report) {
27552755
LPSTR str1, str2, to_free1 = NULL, to_free2 = NULL;

0 commit comments

Comments
 (0)