diff options
| author | Junio C Hamano <gitster@pobox.com> | 2023-01-05 15:07:18 +0900 |
|---|---|---|
| committer | Junio C Hamano <gitster@pobox.com> | 2023-01-05 15:07:18 +0900 |
| commit | 3eac69d2677431803ea696f73fe33d44fbb6c214 (patch) | |
| tree | cc1780cee90bef0ac1a2ef8f1534874ee198c993 /compat | |
| parent | Merge branch 'jt/avoid-lazy-fetch-commits' (diff) | |
| parent | mingw: fix typo in an error message from ownership check (diff) | |
| download | git-3eac69d2677431803ea696f73fe33d44fbb6c214.tar.gz git-3eac69d2677431803ea696f73fe33d44fbb6c214.zip | |
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')
| -rw-r--r-- | compat/mingw.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/compat/mingw.c b/compat/mingw.c index d614f156df..af397e68a1 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; |
