[PATCH 1/4] dmime: Don't use an IDirectMusicSegment8 method implementation directly.

Michael Stefaniuc mstefani at redhat.de
Tue Jan 7 03:33:21 CST 2014


---
 dlls/dmime/segment.c | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/dlls/dmime/segment.c b/dlls/dmime/segment.c
index 36766db..22218b5 100644
--- a/dlls/dmime/segment.c
+++ b/dlls/dmime/segment.c
@@ -813,7 +813,8 @@ static HRESULT IDirectMusicSegment8Impl_IPersistStream_LoadTrack (LPPERSISTSTREA
   /* release all loading-related stuff */
   IPersistStream_Release (pPersistStream);
 
-  hr = IDirectMusicSegment8Impl_IDirectMusicSegment8_InsertTrack ((LPDIRECTMUSICSEGMENT8)&This->SegmentVtbl, *ppTrack, pTrack_hdr->dwGroup); /* at dsPosition */
+  hr = IDirectMusicSegment8_InsertTrack((LPDIRECTMUSICSEGMENT8)&This->SegmentVtbl, *ppTrack,
+                                        pTrack_hdr->dwGroup); /* at dsPosition */
   if (FAILED(hr)) {
     ERR(": could not insert track\n");
     return hr;
-- 
1.8.3.1



More information about the wine-patches mailing list