1
0
mirror of https://github.com/wine-mirror/wine synced 2024-07-08 20:06:18 +00:00

wineoss.drv: Make get_ossdevice_from_guid() static.

This commit is contained in:
Francois Gouget 2012-04-20 08:40:04 +02:00 committed by Alexandre Julliard
parent fe04204d11
commit d76d88a74b

View File

@ -588,7 +588,7 @@ HRESULT WINAPI AUDDRV_GetEndpointIDs(EDataFlow flow, WCHAR ***ids, GUID **guids,
return S_OK;
}
const OSSDevice *get_ossdevice_from_guid(const GUID *guid)
static const OSSDevice *get_ossdevice_from_guid(const GUID *guid)
{
OSSDevice *dev_item;
LIST_FOR_EACH_ENTRY(dev_item, &g_devices, OSSDevice, entry)