Skip to content
Snippets Groups Projects
Commit 3879b193 authored by Alexandre Julliard's avatar Alexandre Julliard
Browse files

Fixed typo in wine_get_unix_file_name().

parent a6166e17
No related branches found
No related tags found
No related merge requests found
......@@ -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;
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment