Maarten Lankhorst : quartz: Downgrade a fixme to a warn in dsoundrender.

Alexandre Julliard julliard at winehq.org
Thu Jun 26 06:48:17 CDT 2008


Module: wine
Branch: master
Commit: 3bda54bb04cd898d6f9e508a525d8758c1dfcc8c
URL:    http://source.winehq.org/git/wine.git/?a=commit;h=3bda54bb04cd898d6f9e508a525d8758c1dfcc8c

Author: Maarten Lankhorst <m.b.lankhorst at gmail.com>
Date:   Mon Jun 23 20:10:19 2008 -0700

quartz: Downgrade a fixme to a warn in dsoundrender.

---

 dlls/quartz/dsoundrender.c |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/dlls/quartz/dsoundrender.c b/dlls/quartz/dsoundrender.c
index 915f8b4..1bdf390 100644
--- a/dlls/quartz/dsoundrender.c
+++ b/dlls/quartz/dsoundrender.c
@@ -261,7 +261,7 @@ static HRESULT DSoundRender_Sample(LPVOID iface, IMediaSample * pSample)
         ERR("Cannot get sample time (%x)\n", hr);
 
     if (This->rtLastStop != tStart && (IMediaSample_IsDiscontinuity(pSample) == S_FALSE))
-        FIXME("Unexpected discontinuity: Last: %u.%03u, tStart: %u.%03u\n",
+        WARN("Unexpected discontinuity: Last: %u.%03u, tStart: %u.%03u\n",
             (DWORD)(This->rtLastStop / 10000000), (DWORD)((This->rtLastStop / 10000)%1000),
             (DWORD)(tStart / 10000000), (DWORD)((tStart / 10000)%1000));
     This->rtLastStop = tStop;




More information about the wine-cvs mailing list