From eaed762f670b6b88b9577994f3c95e099cd28b63 Mon Sep 17 00:00:00 2001 From: Maarten Lankhorst Date: Thu, 26 Jul 2012 08:36:01 +0200 Subject: [PATCH] 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 64ee62ea94f..5a71a3d3285 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; -- 2.11.4.GIT