Francois Gouget : services/tests: Some spelling and duplicate word fixes.

Alexandre Julliard julliard at winehq.org
Mon Oct 22 15:38:44 CDT 2018


Module: wine
Branch: master
Commit: b8953b2ecef30e367959dc95d9a2df009a06beb0
URL:    https://source.winehq.org/git/wine.git/?a=commit;h=b8953b2ecef30e367959dc95d9a2df009a06beb0

Author: Francois Gouget <fgouget at free.fr>
Date:   Mon Oct 22 03:17:06 2018 +0200

services/tests: Some spelling and duplicate word fixes.

Signed-off-by: Francois Gouget <fgouget at free.fr>
Signed-off-by: Alexandre Julliard <julliard at winehq.org>

---

 programs/services/tests/service.c | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/programs/services/tests/service.c b/programs/services/tests/service.c
index aaae680..5e9265d 100644
--- a/programs/services/tests/service.c
+++ b/programs/services/tests/service.c
@@ -149,11 +149,11 @@ static BOOL CALLBACK monitor_enum_proc(HMONITOR hmon, HDC hdc, LPRECT lprc, LPAR
     service_ok(r, "GetMonitorInfo failed.\n");
 
     service_ok(mi.rcMonitor.left == 0 && mi.rcMonitor.top == 0 && mi.rcMonitor.right >= 640 && mi.rcMonitor.bottom >= 480,
-               "Unexepected monitor rcMonitor values: {%d,%d,%d,%d}\n",
+               "Unexpected monitor rcMonitor values: {%d,%d,%d,%d}\n",
                mi.rcMonitor.left, mi.rcMonitor.top, mi.rcMonitor.right, mi.rcMonitor.bottom);
 
     service_ok(mi.rcWork.left == 0 && mi.rcWork.top == 0 && mi.rcWork.right >= 640 && mi.rcWork.bottom >= 480,
-               "Unexepected monitor rcWork values: {%d,%d,%d,%d}\n",
+               "Unexpected monitor rcWork values: {%d,%d,%d,%d}\n",
                mi.rcWork.left, mi.rcWork.top, mi.rcWork.right, mi.rcWork.bottom);
 
     service_ok(!strcmp(mi.szDevice, "WinDisc") || !strcmp(mi.szDevice, "\\\\.\\DISPLAY1"),
@@ -164,7 +164,7 @@ static BOOL CALLBACK monitor_enum_proc(HMONITOR hmon, HDC hdc, LPRECT lprc, LPAR
     return TRUE;
 }
 
-/* query informations monitor information, even in non-interactive services */
+/* query monitor information, even in non-interactive services */
 static void test_monitors(void)
 {
     BOOL r;




More information about the wine-cvs mailing list