mirror of
git://source.winehq.org/git/wine.git
synced 2024-10-31 14:24:45 +00:00
Fixed typo in wine_get_unix_file_name().
This commit is contained in:
parent
a6166e174e
commit
3879b19342
1 changed files with 1 additions and 1 deletions
|
@ -1376,7 +1376,7 @@ BOOL WINAPI wine_get_unix_file_name( LPCSTR dos, LPSTR buffer, DWORD len )
|
|||
{
|
||||
BOOL ret;
|
||||
DOS_FULL_NAME path;
|
||||
if ((ret = DOSFS_GetFullName( dos, FALSE, &path ))) lstrcpynA( buffer, dos, len );
|
||||
if ((ret = DOSFS_GetFullName( dos, FALSE, &path ))) lstrcpynA( buffer, path.long_name, len );
|
||||
return ret;
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue