ntdll: Implement get_device_mount_point() on FreeBSD.

Signed-off-by: Damjan Jovanovic <damjan.jov@gmail.com>
Signed-off-by: Alexandre Julliard <julliard@winehq.org>
This commit is contained in:
Damjan Jovanovic 2021-10-31 17:48:18 +02:00 committed by Alexandre Julliard
parent d5406d028b
commit 26d8701ae2
1 changed files with 1 additions and 1 deletions

View File

@ -944,7 +944,7 @@ static char *get_device_mount_point( dev_t dev )
fclose( f );
}
mutex_unlock( &mnt_mutex );
#elif defined(__APPLE__)
#elif defined(__APPLE__) || defined(__FreeBSD__) || defined(__FreeBSD_kernel__)
struct statfs *entry;
struct stat st;
int i, size;