dsound: Silence the IDirectSoundBuffer_Initialize warnings.
diff --git a/dlls/dsound/buffer.c b/dlls/dsound/buffer.c
index d0a6fe6..d7da379 100644
--- a/dlls/dsound/buffer.c
+++ b/dlls/dsound/buffer.c
@@ -793,9 +793,7 @@
LPDIRECTSOUNDBUFFER8 iface,LPDIRECTSOUND dsound,LPCDSBUFFERDESC dbsd
) {
IDirectSoundBufferImpl *This = (IDirectSoundBufferImpl *)iface;
- FIXME("(%p,%p,%p):stub\n",This,dsound,dbsd);
- DPRINTF("Re-Init!!!\n");
- WARN("already initialized\n");
+ WARN("(%p) already initialized\n", This);
return DSERR_ALREADYINITIALIZED;
}
diff --git a/dlls/dsound/primary.c b/dlls/dsound/primary.c
index 16509d6..271243d 100644
--- a/dlls/dsound/primary.c
+++ b/dlls/dsound/primary.c
@@ -952,9 +952,7 @@
LPDIRECTSOUNDBUFFER iface,LPDIRECTSOUND dsound,LPCDSBUFFERDESC dbsd
) {
PrimaryBufferImpl *This = (PrimaryBufferImpl *)iface;
- FIXME("(%p,%p,%p):stub\n",This,dsound,dbsd);
- DPRINTF("Re-Init!!!\n");
- WARN("already initialized\n");
+ WARN("(%p) already initialized\n", This);
return DSERR_ALREADYINITIALIZED;
}