Janitorial: Remove more stray '\' at end of lines.

Michael Stefaniuc mstefani at redhat.de
Mon Jan 8 17:39:49 CST 2007


---
 dlls/avifil32/tmpfile.c        |    2 +-
 dlls/kernel32/cpu.c            |    2 +-
 dlls/localspl/tests/localmon.c |    2 +-
 dlls/msrle32/msrle32.c         |    4 ++--
 dlls/ntdll/tests/om.c          |    2 +-
 dlls/user32/tests/msg.c        |    6 +++---
 programs/oleview/oleview.c     |    2 +-
 7 files changed, 10 insertions(+), 10 deletions(-)

diff --git a/dlls/avifil32/tmpfile.c b/dlls/avifil32/tmpfile.c
index 6d6c5d1..2dfcc95 100644
--- a/dlls/avifil32/tmpfile.c
+++ b/dlls/avifil32/tmpfile.c
@@ -112,7 +112,7 @@ PAVIFILE AVIFILE_CreateAVITempFile(int nStreams, PAVISTREAM *ppStreams) {
     {
       register DWORD tmp;
 
-      tmp = MulDiv(AVIStreamSampleToTime(ppStreams[i], sInfo.dwLength), \
+      tmp = MulDiv(AVIStreamSampleToTime(ppStreams[i], sInfo.dwLength),
 		   tmpFile->fInfo.dwScale, tmpFile->fInfo.dwRate * 1000);
       if (tmpFile->fInfo.dwLength < tmp)
 	tmpFile->fInfo.dwLength = tmp;
diff --git a/dlls/kernel32/cpu.c b/dlls/kernel32/cpu.c
index 2d9b13e..9f21132 100644
--- a/dlls/kernel32/cpu.c
+++ b/dlls/kernel32/cpu.c
@@ -618,7 +618,7 @@ VOID WINAPI GetSystemInfo(
 			cachedsi.wProcessorLevel = 6;
 			break;
 		default:
-			FIXME("unknown FreeBSD cpu family %d, please report! (-> setting to 386)\n", \
+			FIXME("unknown FreeBSD cpu family %d, please report! (-> setting to 386)\n",
 				(regs2[0] >> 8)&0xf);
 			break;
 		}
diff --git a/dlls/localspl/tests/localmon.c b/dlls/localspl/tests/localmon.c
index b99a6a8..ec89d4f 100644
--- a/dlls/localspl/tests/localmon.c
+++ b/dlls/localspl/tests/localmon.c
@@ -62,7 +62,7 @@ static WCHAR cmd_MonitorUIW[] = {'M','o','n','i','t','o','r','U','I',0};
 static WCHAR cmd_MonitorUI_lcaseW[] = {'m','o','n','i','t','o','r','u','i',0};
 static WCHAR does_not_existW[] = {'d','o','e','s','_','n','o','t','_','e','x','i','s','t',0};
 static WCHAR emptyW[] = {0};
-static WCHAR Monitors_LocalPortW[] = { \
+static WCHAR Monitors_LocalPortW[] = {
                                 'S','y','s','t','e','m','\\',
                                 'C','u','r','r','e','n','t','C','o','n','t','r','o','l','S','e','t','\\',
                                 'C','o','n','t','r','o','l','\\',
diff --git a/dlls/msrle32/msrle32.c b/dlls/msrle32/msrle32.c
index c1e5463..96a0807 100644
--- a/dlls/msrle32/msrle32.c
+++ b/dlls/msrle32/msrle32.c
@@ -101,12 +101,12 @@ static BOOL isSupportedMRLE(LPCBITMAPINFOHEADER lpbi)
   /* pre-conditions */
   assert(lpbi != NULL);
 
-  if (lpbi->biSize < sizeof(BITMAPINFOHEADER) || \
+  if (lpbi->biSize < sizeof(BITMAPINFOHEADER) ||
       lpbi->biPlanes != 1)
     return FALSE;
 
   if (lpbi->biCompression == BI_RLE4) {
-    if (lpbi->biBitCount != 4 || \
+    if (lpbi->biBitCount != 4 ||
 	(lpbi->biWidth % 2) != 0)
       return FALSE;
   } else if (lpbi->biCompression == BI_RLE8) {
diff --git a/dlls/ntdll/tests/om.c b/dlls/ntdll/tests/om.c
index e2c5f6c..557ee41 100644
--- a/dlls/ntdll/tests/om.c
+++ b/dlls/ntdll/tests/om.c
@@ -333,7 +333,7 @@ void test_directory(void)
     /* Can't use symlinks as a directory */
     pRtlCreateUnicodeStringFromAsciiz(&str, "\\BaseNamedObjects\\Local");
     InitializeObjectAttributes(&attr, &str, 0, 0, NULL);
-    status = pNtOpenSymbolicLinkObject(&dir, SYMBOLIC_LINK_QUERY, &attr);\
+    status = pNtOpenSymbolicLinkObject(&dir, SYMBOLIC_LINK_QUERY, &attr);
     ok(status == STATUS_SUCCESS, "Failed to open SymbolicLink(%08x)\n", status);
     pRtlFreeUnicodeString(&str);
     InitializeObjectAttributes(&attr, &str, 0, dir, NULL);
diff --git a/dlls/user32/tests/msg.c b/dlls/user32/tests/msg.c
index 0933c56..7e63e73 100644
--- a/dlls/user32/tests/msg.c
+++ b/dlls/user32/tests/msg.c
@@ -8231,17 +8231,17 @@ static void test_TrackMouseEvent(void)
     ok(ret, "TrackMouseEvent(TME_HOVER | TME_CANCEL) error %d\n", GetLastError())
 
     default_hover_time = 0xdeadbeef;
-    SetLastError(0xdeadbeef); \
+    SetLastError(0xdeadbeef);
     ret = SystemParametersInfo(SPI_GETMOUSEHOVERTIME, 0, &default_hover_time, 0);
     ok(ret, "SystemParametersInfo(SPI_GETMOUSEHOVERTIME) error %u\n", GetLastError());
     if (!ret) default_hover_time = 400;
     trace("SPI_GETMOUSEHOVERTIME returned %u ms\n", default_hover_time);
 
-    SetLastError(0xdeadbeef); \
+    SetLastError(0xdeadbeef);
     ret = SystemParametersInfo(SPI_GETMOUSEHOVERWIDTH, 0, &hover_width, 0);
     ok(ret, "SystemParametersInfo(SPI_GETMOUSEHOVERWIDTH) error %u\n", GetLastError());
     if (!ret) hover_width = 4;
-    SetLastError(0xdeadbeef); \
+    SetLastError(0xdeadbeef);
     ret = SystemParametersInfo(SPI_GETMOUSEHOVERHEIGHT, 0, &hover_height, 0);
     ok(ret, "SystemParametersInfo(SPI_GETMOUSEHOVERHEIGHT) error %u\n", GetLastError());
     if (!ret) hover_height = 4;
diff --git a/programs/oleview/oleview.c b/programs/oleview/oleview.c
index 88ce725..b66c5a1 100644
--- a/programs/oleview/oleview.c
+++ b/programs/oleview/oleview.c
@@ -380,7 +380,7 @@ int MenuCommand(WPARAM wParam, HWND hWnd)
 
             memset(&si, 0, sizeof(si));
             si.cb = sizeof(si);
-            CreateProcess(NULL, wszRegEdit, NULL, NULL, FALSE, 0,\
+            CreateProcess(NULL, wszRegEdit, NULL, NULL, FALSE, 0,
                     NULL, NULL, &si, &pi);
             CloseHandle(pi.hProcess);
             CloseHandle(pi.hThread);
-- 
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/20070109/823eeca8/attachment-0001.pgp


More information about the wine-patches mailing list