localspl/tests: In multiline strings there is no need for '\' at the end of the lines.

Michael Stefaniuc mstefani at redhat.de
Tue Dec 26 17:19:40 CST 2006


---
 dlls/localspl/tests/localmon.c |   22 +++++++++++-----------
 1 files changed, 11 insertions(+), 11 deletions(-)

diff --git a/dlls/localspl/tests/localmon.c b/dlls/localspl/tests/localmon.c
index 5aecda6..98a4082 100644
--- a/dlls/localspl/tests/localmon.c
+++ b/dlls/localspl/tests/localmon.c
@@ -212,7 +212,7 @@ static void test_EnumPorts(void)
         }        
 
         ok( !res && (GetLastError() == ERROR_INSUFFICIENT_BUFFER),
-            "(%d) returned %d with %d and %d, %d (expected '0' with " \
+            "(%d) returned %d with %d and %d, %d (expected '0' with "
             "ERROR_INSUFFICIENT_BUFFER)\n",
             level, res, GetLastError(), cbBuf, pcReturned);
 
@@ -239,7 +239,7 @@ static void test_EnumPorts(void)
         SetLastError(0xdeadbeef);
         res = pEnumPorts(NULL, level, buffer, cbBuf-1, &pcbNeeded, &pcReturned);
         ok( !res && (GetLastError() == ERROR_INSUFFICIENT_BUFFER),
-            "(%d) returned %d with %d and %d, %d (expected '0' with " \
+            "(%d) returned %d with %d and %d, %d (expected '0' with "
             "ERROR_INSUFFICIENT_BUFFER)\n",
             level, res, GetLastError(), pcbNeeded, pcReturned);
 
@@ -281,13 +281,13 @@ static void test_InitializePrintMonitor(void)
     res = pInitializePrintMonitor(NULL);
     /* The Parameter was unchecked before w2k */
     ok( res || (GetLastError() == ERROR_INVALID_PARAMETER),
-        "returned %p with %d\n (expected '!= NULL' or: NULL with " \
+        "returned %p with %d\n (expected '!= NULL' or: NULL with "
         "ERROR_INVALID_PARAMETER)\n", res, GetLastError());
 
     SetLastError(0xdeadbeef);
     res = pInitializePrintMonitor(emptyW);
     ok( res || (GetLastError() == ERROR_INVALID_PARAMETER),
-        "returned %p with %d\n (expected '!= NULL' or: NULL with " \
+        "returned %p with %d\n (expected '!= NULL' or: NULL with "
         "ERROR_INVALID_PARAMETER)\n", res, GetLastError());
 
 
@@ -357,7 +357,7 @@ static void test_XcvDataPort(void)
     SetLastError(0xdeadbeef);
     res = pXcvDataPort(hXcv, cmd_MonitorUIW, NULL, 0, NULL, 0, &needed);
     ok( (res == ERROR_INSUFFICIENT_BUFFER) && (needed <= MAX_PATH),
-        "returned %d with 0x%x and 0x%x (expected 'ERROR_INSUFFICIENT_BUFFER' " \
+        "returned %d with 0x%x and 0x%x (expected 'ERROR_INSUFFICIENT_BUFFER' "
         " and '<= MAX_PATH')\n", res, GetLastError(), needed);
 
     if (needed > MAX_PATH) goto xcv_cleanup;
@@ -367,7 +367,7 @@ static void test_XcvDataPort(void)
     needed = (DWORD) 0xdeadbeef;
     SetLastError(0xdeadbeef);
     res = pXcvDataPort(hXcv, emptyW, NULL, 0, NULL, 0, &needed);
-    ok( res == ERROR_INVALID_PARAMETER, "returned %d with 0x%x and 0x%x " \
+    ok( res == ERROR_INVALID_PARAMETER, "returned %d with 0x%x and 0x%x "
         "(expected 'ERROR_INVALID_PARAMETER')\n", res, GetLastError(), needed);
 
     if (0) {
@@ -382,7 +382,7 @@ static void test_XcvDataPort(void)
     needed = (DWORD) 0xdeadbeef;
     SetLastError(0xdeadbeef);
     res = pXcvDataPort(NULL, cmd_MonitorUIW, NULL, 0, buffer, len, &needed);
-    ok( res == ERROR_SUCCESS, "returned %d with 0x%x and 0x%x " \
+    ok( res == ERROR_SUCCESS, "returned %d with 0x%x and 0x%x "
         "(expected 'ERROR_SUCCESS')\n", res, GetLastError(), needed);
 
 
@@ -391,14 +391,14 @@ static void test_XcvDataPort(void)
     needed = (DWORD) 0xdeadbeef;
     SetLastError(0xdeadbeef);
     res = pXcvDataPort(hXcv, cmd_MonitorUI_lcaseW, NULL, 0, buffer, len, &needed);
-    ok( res == ERROR_INVALID_PARAMETER, "returned %d with 0x%x and 0x%x " \
+    ok( res == ERROR_INVALID_PARAMETER, "returned %d with 0x%x and 0x%x "
         "(expected 'ERROR_INVALID_PARAMETER')\n", res, GetLastError(), needed);
 
     /* off by one: larger  */
     needed = (DWORD) 0xdeadbeef;
     SetLastError(0xdeadbeef);
     res = pXcvDataPort(hXcv, cmd_MonitorUIW, NULL, 0, buffer, len+1, &needed);
-    ok( res == ERROR_SUCCESS, "returned %d with 0x%x and 0x%x " \
+    ok( res == ERROR_SUCCESS, "returned %d with 0x%x and 0x%x "
         "(expected 'ERROR_SUCCESS')\n", res, GetLastError(), needed);
 
 
@@ -406,7 +406,7 @@ static void test_XcvDataPort(void)
     needed = (DWORD) 0xdeadbeef;
     SetLastError(0xdeadbeef);
     res = pXcvDataPort(hXcv, cmd_MonitorUIW, NULL, 0, buffer, len-1, &needed);
-    ok( res == ERROR_INSUFFICIENT_BUFFER, "returned %d with 0x%x and 0x%x " \
+    ok( res == ERROR_INSUFFICIENT_BUFFER, "returned %d with 0x%x and 0x%x "
         "(expected 'ERROR_INSUFFICIENT_BUFFER')\n", res, GetLastError(), needed);
 
     /* Normal use. The DLL-Name without a Path is returned */
@@ -414,7 +414,7 @@ static void test_XcvDataPort(void)
     needed = (DWORD) 0xdeadbeef;
     SetLastError(0xdeadbeef);
     res = pXcvDataPort(hXcv, cmd_MonitorUIW, NULL, 0, buffer, len, &needed);
-    ok( res == ERROR_SUCCESS, "returned %d with 0x%x and 0x%x " \
+    ok( res == ERROR_SUCCESS, "returned %d with 0x%x and 0x%x "
         "(expected 'ERROR_SUCCESS')\n", res, GetLastError(), needed);
 
 xcv_cleanup:
-- 
1.4.4.2
-------------- next part --------------
A non-text attachment was scrubbed...
Name: not available
Type: application/pgp-signature
Size: 189 bytes
Desc: not available
Url : http://www.winehq.org/pipermail/wine-patches/attachments/20061227/eced5f46/attachment.pgp


More information about the wine-patches mailing list