Skip to content

Commit fb93aa4

Browse files
committed
Fix Unicode '-'
1 parent f1c0048 commit fb93aa4

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

cli/xsum_os_specific.c

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -206,7 +206,7 @@ static char* XSUM_narrowString(const wchar_t *str, int *lenOut)
206206
* Acts like strdup. The string must be freed afterwards.
207207
* This version allows keeping the output length.
208208
*
209-
* Note: The \\?\ prefix (prefix with question) designates a file-systemonly path.
209+
* Note: The \\?\ prefix (prefix with question) designates a file-system-only path.
210210
* Unlike the \\.\ prefix (prefix with dot), it does not provide access to DOS device names (e.g. COM1, NUL, CON, etc).
211211
*/
212212
static wchar_t* XSUM_widenStringAsUncPath(const char* path)
@@ -273,7 +273,7 @@ static wchar_t* XSUM_widenStringAsUncPath(const char* path)
273273
* In order to open a Unicode filename and long path, we need to convert filenames to UTF-16,
274274
* absolute path, UNC and use _wfopen.
275275
*
276-
* Note: The \\?\ prefix designates a file-systemonly path.
276+
* Note: The \\?\ prefix designates a file-system-only path.
277277
* Unlike the \\.\ prefix, it does not provide access to DOS device names (e.g. COM1, NUL, CON, etc).
278278
*/
279279
XSUM_API FILE* XSUM_fopen(const char* filename, const char* mode)

0 commit comments

Comments
 (0)