Skip to content

Commit 8718dfe

Browse files
committed
Fixed typo MB_MB_ -> MB_
1 parent 5ae596c commit 8718dfe

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/ngscopeclient/pthread_compat.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@ void pthread_setname_np_compat(const char *name)
5454
#ifdef _WIN32
5555
const size_t nmax = 128;
5656
wchar_t wname[nmax];
57-
MultiByteToWideChar(CP_UTF8, MB_MB_PRECOMPOSED, name, -1, wname, nmax);
57+
MultiByteToWideChar(CP_UTF8, MB_PRECOMPOSED, name, -1, wname, nmax);
5858
SetThreadDescription(GetCurrentThread(), wname);
5959
#endif
6060
}

0 commit comments

Comments
 (0)