Module: wine
Branch: master
Commit: ccad9f3b978d18080dfa8660fde33bd8098167c8
URL: http://source.winehq.org/git/wine.git/?a=commit;h=ccad9f3b978d18080dfa8660f…
Author: Francois Gouget <fgouget(a)free.fr>
Date: Wed Apr 20 08:56:57 2016 +0200
kernel32/tests: Spelling fixes for a couple of comments.
Signed-off-by: Francois Gouget <fgouget(a)free.fr>
Signed-off-by: Alexandre Julliard <julliard(a)winehq.org>
---
dlls/kernel32/debugger.c | 2 +-
dlls/kernel32/tests/sync.c | 4 ++--
2 files changed, 3 insertions(+), 3 deletions(-)
diff --git a/dlls/kernel32/debugger.c b/dlls/kernel32/debugger.c
index d4d66b2..a277f93 100644
--- a/dlls/kernel32/debugger.c
+++ b/dlls/kernel32/debugger.c
@@ -159,7 +159,7 @@ BOOL WINAPI WaitForDebugEvent(
* PARAMS
* pid [I] The id of the process to continue.
* tid [I] The id of the thread to continue.
- * status [I] The rule to apply to unhandled exeptions.
+ * status [I] The rule to apply to unhandled exceptions.
*
* RETURNS
*
diff --git a/dlls/kernel32/tests/sync.c b/dlls/kernel32/tests/sync.c
index 325e1ff..26cd1d6 100644
--- a/dlls/kernel32/tests/sync.c
+++ b/dlls/kernel32/tests/sync.c
@@ -1735,9 +1735,9 @@ static SRWLOCK condvar_srwlock;
/* Sequence of wake/sleep to check boundary conditions:
* 0: init
- * 1: producer emits a WakeConditionVaribale without consumer waiting.
+ * 1: producer emits a WakeConditionVariable without consumer waiting.
* 2: consumer sleeps without a wake expecting timeout
- * 3: producer emits a WakeAllConditionVaribale without consumer waiting.
+ * 3: producer emits a WakeAllConditionVariable without consumer waiting.
* 4: consumer sleeps without a wake expecting timeout
* 5: a wake is handed to a SleepConditionVariableCS
* 6: a wakeall is handed to a SleepConditionVariableCS
Module: wine
Branch: master
Commit: 8a348a4b99515ed9095c49df513ed5a2fa77d4c2
URL: http://source.winehq.org/git/wine.git/?a=commit;h=8a348a4b99515ed9095c49df5…
Author: Henri Verbeet <hverbeet(a)codeweavers.com>
Date: Tue Apr 19 18:34:08 2016 +0200
winex11: Only warn when an RandR output has no modes.
This can legitimately happen when the output is disconnected.
Signed-off-by: Henri Verbeet <hverbeet(a)codeweavers.com>
Signed-off-by: Alexandre Julliard <julliard(a)winehq.org>
---
dlls/winex11.drv/xrandr.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/dlls/winex11.drv/xrandr.c b/dlls/winex11.drv/xrandr.c
index 58e66d6..2fee851 100644
--- a/dlls/winex11.drv/xrandr.c
+++ b/dlls/winex11.drv/xrandr.c
@@ -431,7 +431,7 @@ static int xrandr12_init_modes(void)
if (!output_info->nmode)
{
- ERR("Output has no modes.\n");
+ WARN("Output has no modes.\n");
goto done;
}