1
0
mirror of https://github.com/winfsp/winfsp.git synced 2025-10-29 02:58:38 -05:00

Correct a cast in winfsp_fuse

This commit is contained in:
Ben RUBSON
2018-03-26 10:36:26 +02:00
committed by GitHub
parent 750e72e601
commit 5564a9efae

View File

@@ -388,7 +388,7 @@ static inline int fsp_fuse_set_signal_handlers(void *se)
static inline char *fsp_fuse_conv_to_win_path(const char *path)
{
void *cygwin_create_path(unsigned, const void *);
char *cygwin_create_path(unsigned, const void *);
return cygwin_create_path(
0/*CCP_POSIX_TO_WIN_A*/ | 0x100/*CCP_RELATIVE*/,
path);