mirror of
https://gitlab.winehq.org/wine/wine-staging.git
synced 2024-11-21 16:46:54 -08:00
36 lines
1.0 KiB
Diff
36 lines
1.0 KiB
Diff
From bef79b1cc995c36d4dccc6e7a7251f2954eef89a Mon Sep 17 00:00:00 2001
|
|
From: Maarten Lankhorst <m.b.lankhorst@gmail.com>
|
|
Date: Sat, 8 Feb 2014 16:08:54 +0100
|
|
Subject: [PATCH 16/42] fix fdels trailing whitespaces
|
|
|
|
Happy? :P
|
|
---
|
|
dlls/winepulse.drv/mmdevdrv.c | 4 ++--
|
|
1 file changed, 2 insertions(+), 2 deletions(-)
|
|
|
|
diff --git a/dlls/winepulse.drv/mmdevdrv.c b/dlls/winepulse.drv/mmdevdrv.c
|
|
index 64ee62e..5a71a3d 100644
|
|
--- a/dlls/winepulse.drv/mmdevdrv.c
|
|
+++ b/dlls/winepulse.drv/mmdevdrv.c
|
|
@@ -1898,7 +1898,7 @@ static HRESULT WINAPI AudioCaptureClient_GetNextPacketSize(
|
|
TRACE("(%p)->(%p)\n", This, frames);
|
|
if (!frames)
|
|
return E_POINTER;
|
|
-
|
|
+
|
|
pthread_mutex_lock(&pulse_lock);
|
|
ACImpl_GetCapturePad(This, NULL);
|
|
p = This->locked_ptr;
|
|
@@ -1998,7 +1998,7 @@ static HRESULT WINAPI AudioClock_GetPosition(IAudioClock *iface, UINT64 *pos,
|
|
else
|
|
*pos += This->pad;
|
|
}
|
|
-
|
|
+
|
|
/* Make time never go backwards */
|
|
if (*pos < This->clock_lastpos)
|
|
*pos = This->clock_lastpos;
|
|
--
|
|
1.8.5.2
|
|
|