Module: wine Branch: master Commit: 9bfff40db571bf4b4e0f704e6a05401ddf88567f URL: http://source.winehq.org/git/wine.git/?a=commit;h=9bfff40db571bf4b4e0f704e6a...
Author: Alexandre Julliard julliard@winehq.org Date: Tue Feb 23 21:53:34 2016 +0900
winepulse.drv: Avoid some printf format warnings.
Signed-off-by: Alexandre Julliard julliard@winehq.org
---
dlls/winepulse.drv/mmdevdrv.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/dlls/winepulse.drv/mmdevdrv.c b/dlls/winepulse.drv/mmdevdrv.c index 04e9a0b..d57b822 100644 --- a/dlls/winepulse.drv/mmdevdrv.c +++ b/dlls/winepulse.drv/mmdevdrv.c @@ -662,7 +662,7 @@ static void pulse_wr_callback(pa_stream *s, size_t bytes, void *userdata) UINT32 oldpad = This->pad;
if(This->local_buffer){ - size_t to_write; + UINT32 to_write; BYTE *buf = This->local_buffer + This->lcl_offs_bytes;
if(This->pad > bytes){