Commit f23edac0 authored by Huw Davies's avatar Huw Davies Committed by Alexandre Julliard

wineoss: Build with msvcrt.

parent 77ae49ce
......@@ -6,8 +6,6 @@ DELAYIMPORTS = winmm
EXTRALIBS = $(OSS4_LIBS) $(PTHREAD_LIBS)
EXTRAINCL = $(OSS4_CFLAGS)
EXTRADLLFLAGS = -mcygwin
C_SRCS = \
midi.c \
midipatch.c \
......
......@@ -39,7 +39,6 @@
#include "wine/debug.h"
#include "wine/list.h"
#include "wine/unicode.h"
#include "wine/unixlib.h"
#include "unixlib.h"
......@@ -391,7 +390,7 @@ HRESULT WINAPI AUDDRV_GetEndpointIDs(EDataFlow flow, WCHAR ***ids_out, GUID **gu
}
for(i = 0; i < params.num; i++){
unsigned int name_size = (strlenW(params.endpoints[i].name) + 1) * sizeof(WCHAR);
unsigned int name_size = (wcslen(params.endpoints[i].name) + 1) * sizeof(WCHAR);
unsigned int dev_size = strlen(params.endpoints[i].device) + 1;
OSSDevice *oss_dev;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment