[WINEALSA] Fix typo

Maarten Lankhorst m.b.lankhorst at gmail.com
Wed Feb 21 13:18:04 CST 2007


[WINEALSA] Fix typo
-------------- next part --------------
>From a048d2cc8927f6237d84ec34e9bb157fb37c7364 Mon Sep 17 00:00:00 2001
From: maarten <maarten at maarten-laptop.(none)>
Date: Sat, 10 Feb 2007 11:53:26 +0100
Subject: [PATCH] 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 @@ #define USE_PIPE_SYNC
 
 #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*
     WAIT_OMR(omr, sleep);
 }
 
-
 /******************************************************************
  *		ALSA_AddRingMessage
  *
-- 
1.4.1



More information about the wine-patches mailing list