Module: wine Branch: master Commit: cda92aeba9206fc26d9cd375e63d4788cf62786a URL: http://source.winehq.org/git/wine.git/?a=commit;h=cda92aeba9206fc26d9cd375e6...
Author: Maarten Lankhorst m.b.lankhorst@gmail.com Date: Wed Feb 21 20:18:04 2007 +0100
winealsa: Fix typo.
---
dlls/winealsa.drv/alsa.c | 3 +-- 1 files changed, 1 insertions(+), 2 deletions(-)
diff --git a/dlls/winealsa.drv/alsa.c b/dlls/winealsa.drv/alsa.c index 1a1fd19..353a9c2 100644 --- a/dlls/winealsa.drv/alsa.c +++ b/dlls/winealsa.drv/alsa.c @@ -50,7 +50,7 @@ WINE_DEFAULT_DEBUG_CHANNEL(alsa);
#ifdef USE_PIPE_SYNC #define INIT_OMR(omr) do { if (pipe(omr->msg_pipe) < 0) { omr->msg_pipe[0] = omr->msg_pipe[1] = -1; } } while (0) -#define CLOSE_OMR(Omr) do { close(omr->msg_pipe[0]); close(omr->msg_pipe[1]); } while (0) +#define CLOSE_OMR(omr) do { close(omr->msg_pipe[0]); close(omr->msg_pipe[1]); } while (0) #define SIGNAL_OMR(omr) do { int x = 0; write((omr)->msg_pipe[1], &x, sizeof(x)); } while (0) #define CLEAR_OMR(omr) do { int x = 0; read((omr)->msg_pipe[0], &x, sizeof(x)); } while (0) #define RESET_OMR(omr) do { } while (0) @@ -119,7 +119,6 @@ void ALSA_WaitRingMessage(ALSA_MSG_RING* omr, DWORD sleep) WAIT_OMR(omr, sleep); }
- /****************************************************************** * ALSA_AddRingMessage *