Remove spaces before '\n' in traces (#4)

Francois Gouget fgouget at free.fr
Wed Nov 9 12:00:14 CST 2005


Spaces printed before a '\n' are not going to be visible anyway
(unless they cause a line wrap) so we might as well not print them in
the first place.


Changelog:

  * dlls/winedos/int10.c
    dlls/winedos/int15.c
    dlls/wininet/ftp.c
    dlls/wininet/http.c
    dlls/wininet/internet.c
    dlls/winmm/mci.c
    dlls/winmm/mmsystem.c
    dlls/winmm/playsound.c
    dlls/winmm/mciwave/mciwave.c
    dlls/winmm/tests/mixer.c
    dlls/winmm/winealsa/audio.c
    dlls/winmm/winearts/audio.c
    dlls/winmm/wineesd/audio.c
    dlls/winsock/socket16.c
    dlls/winsock/tests/sock.c
    dlls/wintab32/context.c
    dlls/wsock32/socket.c
    dlls/x11drv/event.c
    dlls/x11drv/keyboard.c
    dlls/x11drv/palette.c
    dlls/x11drv/xfont.c
    dlls/x11drv/xrandr.c
    programs/winevdm/winevdm.c

    Francois Gouget <fgouget at free.fr>
    Remove spaces before '\n' in traces


-- 
Francois Gouget         fgouget at free.fr        http://fgouget.free.fr/
       Broadcast message : fin du monde dans cinq minutes, repentez vous !
-------------- next part --------------
Index: dlls/winedos/int10.c
===================================================================
RCS file: /var/cvs/wine/dlls/winedos/int10.c,v
retrieving revision 1.38
diff -u -p -r1.38 int10.c
--- dlls/winedos/int10.c	10 May 2005 16:01:38 -0000	1.38
+++ dlls/winedos/int10.c	9 Nov 2005 15:58:47 -0000
@@ -1258,11 +1258,11 @@ void WINAPI DOSVM_Int10Handler( CONTEXT8
 	        SET_BH( context, VGA_GetColor16((int)BL_reg(context)) );
             break;
         case 0x08: /* READ OVERSCAN (BORDER COLOR) REGISTER  - A.C. */
-            TRACE("Read Overscan (Border Color) Register \n");
+            TRACE("Read Overscan (Border Color) Register\n");
 	        SET_BH( context, VGA_GetColor16(16) );
             break;
         case 0x09: /* READ ALL PALETTE REGISTERS AND OVERSCAN REGISTER - A.C.*/
-            TRACE("Read All Palette Registers and Overscan Register \n");
+            TRACE("Read All Palette Registers and Overscan Register\n");
 		/* ES:DX points to a 17 byte table where the results */
 		/*  of this call should be stored.                   */
                VGA_Get16Palette(CTX_SEG_OFF_TO_LIN(context, context->SegEs, context->Edx));
Index: dlls/winedos/int15.c
===================================================================
RCS file: /var/cvs/wine/dlls/winedos/int15.c,v
retrieving revision 1.4
diff -u -p -r1.4 int15.c
--- dlls/winedos/int15.c	6 Apr 2004 20:14:09 -0000	1.4
+++ dlls/winedos/int15.c	9 Nov 2005 16:21:37 -0000
@@ -76,7 +76,7 @@ void WINAPI DOSVM_Int15Handler( CONTEXT8
         break;
     case 0x86: /* wait*/
         FIXME("INT15: Wait not correctly handled yet\n");
-        if ( AL_reg( context ) != 0x00 ) ERR("Invalid Input to Int15 function 0x86h AL != 0x00 \n");
+        if ( AL_reg( context ) != 0x00 ) ERR("Invalid Input to Int15 function 0x86h AL != 0x00\n");
         break;
     case 0x87: /* move memory regions*/
         FIXME("INT15: Move memory regions not implemented\n");
Index: dlls/wininet/ftp.c
===================================================================
RCS file: /var/cvs/wine/dlls/wininet/ftp.c,v
retrieving revision 1.56
diff -u -p -r1.56 ftp.c
--- dlls/wininet/ftp.c	13 Jun 2005 19:05:43 -0000	1.56
+++ dlls/wininet/ftp.c	9 Nov 2005 16:21:38 -0000
@@ -1948,7 +1948,7 @@ INT FTP_ReceiveResponse(LPWININETFTPSESS
     BOOL multiline = FALSE;
     LPWININETAPPINFOW hIC = NULL;
 
-    TRACE("socket(%d) \n", lpwfs->sndSocket);
+    TRACE("socket(%d)\n", lpwfs->sndSocket);
 
     hIC = (LPWININETAPPINFOW) lpwfs->hdr.lpwhparent;
     SendAsyncCallback(&lpwfs->hdr, dwContext, INTERNET_STATUS_RECEIVING_RESPONSE, NULL, 0);
Index: dlls/wininet/http.c
===================================================================
RCS file: /var/cvs/wine/dlls/wininet/http.c,v
retrieving revision 1.107
diff -u -p -r1.107 http.c
--- dlls/wininet/http.c	1 Nov 2005 18:06:54 -0000	1.107
+++ dlls/wininet/http.c	9 Nov 2005 16:21:38 -0000
@@ -671,7 +671,7 @@ HINTERNET WINAPI HTTP_HttpOpenRequestW(L
     DWORD len;
     INTERNET_ASYNC_RESULT iar;
 
-    TRACE("--> \n");
+    TRACE("-->\n");
 
     assert( lpwhs->hdr.htype == WH_HHTTPSESSION );
     hIC = (LPWININETAPPINFOW) lpwhs->hdr.lpwhparent;
Index: dlls/wininet/internet.c
===================================================================
RCS file: /var/cvs/wine/dlls/wininet/internet.c,v
retrieving revision 1.137
diff -u -p -r1.137 internet.c
--- dlls/wininet/internet.c	8 Nov 2005 16:09:20 -0000	1.137
+++ dlls/wininet/internet.c	9 Nov 2005 16:47:16 -0000
@@ -2075,7 +2075,7 @@ static BOOL INET_QueryOptionHelper(BOOL 
             break;
 
         default:
-            FIXME("Stub! %ld \n",dwOption);
+            FIXME("Stub! %ld\n", dwOption);
             break;
     }
     if (lpwhh)
Index: dlls/winmm/mci.c
===================================================================
RCS file: /var/cvs/wine/dlls/winmm/mci.c,v
retrieving revision 1.65
diff -u -p -r1.65 mci.c
--- dlls/winmm/mci.c	12 Sep 2005 10:52:38 -0000	1.65
+++ dlls/winmm/mci.c	9 Nov 2005 16:21:39 -0000
@@ -886,7 +886,7 @@ static	DWORD	MCI_LoadMciDriver(LPCWSTR _
 
     LeaveCriticalSection(&WINMM_IData.cs);
 
-    TRACE("wDevID=%04X \n", modp.wDeviceID);
+    TRACE("wDevID=%04X\n", modp.wDeviceID);
 
     modp.lpstrParams = NULL;
 
@@ -1866,7 +1866,7 @@ static	DWORD MCI_SysInfo(UINT uDevID, DW
 	ret = MCI_INTEGER_RETURNED;
 	break;
     case MCI_SYSINFO_INSTALLNAME:
-	TRACE("MCI_SYSINFO_INSTALLNAME \n");
+	TRACE("MCI_SYSINFO_INSTALLNAME\n");
 	if ((wmd = MCI_GetDriver(uDevID))) {
 	    ret = MCI_WriteString(lpParms->lpstrReturn, lpParms->dwRetSize,
 				  wmd->lpstrDeviceType);
Index: dlls/winmm/mmsystem.c
===================================================================
RCS file: /var/cvs/wine/dlls/winmm/mmsystem.c,v
retrieving revision 1.120
diff -u -p -r1.120 mmsystem.c
--- dlls/winmm/mmsystem.c	22 Aug 2005 09:26:53 -0000	1.120
+++ dlls/winmm/mmsystem.c	9 Nov 2005 16:21:39 -0000
@@ -114,7 +114,7 @@ BOOL WINAPI MMSYSTEM_LibMain(DWORD fdwRe
 int WINAPI MMSYSTEM_WEP(HINSTANCE16 hInstance, WORD wDataSeg,
                         WORD cbHeapSize, LPSTR lpCmdLine)
 {
-    TRACE("STUB: Unloading MMSystem DLL ... hInst=%04X \n", hInstance);
+    TRACE("STUB: Unloading MMSystem DLL ... hInst=%04X\n", hInstance);
     return TRUE;
 }
 
Index: dlls/winmm/playsound.c
===================================================================
RCS file: /var/cvs/wine/dlls/winmm/playsound.c,v
retrieving revision 1.18
diff -u -p -r1.18 playsound.c
--- dlls/winmm/playsound.c	9 Sep 2005 10:05:02 -0000	1.18
+++ dlls/winmm/playsound.c	9 Nov 2005 16:21:39 -0000
@@ -317,7 +317,7 @@ static DWORD WINAPI proc_PlaySound(LPVOI
     if (mmioDescend(hmmio, &ckMainRIFF, NULL, 0))
 	goto errCleanUp;
 
-    TRACE("ParentChunk ckid=%.4s fccType=%.4s cksize=%08lX \n",
+    TRACE("ParentChunk ckid=%.4s fccType=%.4s cksize=%08lX\n",
 	  (LPSTR)&ckMainRIFF.ckid, (LPSTR)&ckMainRIFF.fccType, ckMainRIFF.cksize);
 
     if ((ckMainRIFF.ckid != FOURCC_RIFF) ||
@@ -328,7 +328,7 @@ static DWORD WINAPI proc_PlaySound(LPVOI
     if (mmioDescend(hmmio, &mmckInfo, &ckMainRIFF, MMIO_FINDCHUNK))
 	goto errCleanUp;
 
-    TRACE("Chunk Found ckid=%.4s fccType=%08lx cksize=%08lX \n",
+    TRACE("Chunk Found ckid=%.4s fccType=%08lx cksize=%08lX\n",
 	  (LPSTR)&mmckInfo.ckid, mmckInfo.fccType, mmckInfo.cksize);
 
     lpWaveFormat = HeapAlloc(GetProcessHeap(), 0, mmckInfo.cksize);
@@ -336,10 +336,10 @@ static DWORD WINAPI proc_PlaySound(LPVOI
 	goto errCleanUp;
 
     TRACE("wFormatTag=%04X !\n", 	lpWaveFormat->wFormatTag);
-    TRACE("nChannels=%d \n", 		lpWaveFormat->nChannels);
+    TRACE("nChannels=%d\n", 		lpWaveFormat->nChannels);
     TRACE("nSamplesPerSec=%ld\n", 	lpWaveFormat->nSamplesPerSec);
     TRACE("nAvgBytesPerSec=%ld\n", 	lpWaveFormat->nAvgBytesPerSec);
-    TRACE("nBlockAlign=%d \n", 		lpWaveFormat->nBlockAlign);
+    TRACE("nBlockAlign=%d\n", 		lpWaveFormat->nBlockAlign);
     TRACE("wBitsPerSample=%u !\n", 	lpWaveFormat->wBitsPerSample);
 
     /* move to end of 'fmt ' chunk */
Index: dlls/winmm/mciwave/mciwave.c
===================================================================
RCS file: /var/cvs/wine/dlls/winmm/mciwave/mciwave.c,v
retrieving revision 1.37
diff -u -p -r1.37 mciwave.c
--- dlls/winmm/mciwave/mciwave.c	10 Oct 2005 10:27:05 -0000	1.37
+++ dlls/winmm/mciwave/mciwave.c	9 Nov 2005 16:21:39 -0000
@@ -87,7 +87,7 @@ static DWORD CALLBACK	MCI_SCAStarter(LPV
 	  sca->wDevID, sca->wMsg, sca->dwParam1, sca->dwParam2);
     HeapFree(GetProcessHeap(), 0, sca);
     ExitThread(ret);
-    WARN("Should not happen ? what's wrong \n");
+    WARN("Should not happen ? what's wrong\n");
     /* should not go after this point */
     return ret;
 }
@@ -252,7 +252,7 @@ static	DWORD WAVE_mciReadFmt(WINE_MCIWAV
     mmckInfo.ckid = mmioFOURCC('f', 'm', 't', ' ');
     if (mmioDescend(wmw->hFile, &mmckInfo, pckMainRIFF, MMIO_FINDCHUNK) != 0)
 	return MCIERR_INVALID_FILE;
-    TRACE("Chunk Found ckid=%.4s fccType=%.4s cksize=%08lX \n",
+    TRACE("Chunk Found ckid=%.4s fccType=%.4s cksize=%08lX\n",
 	  (LPSTR)&mmckInfo.ckid, (LPSTR)&mmckInfo.fccType, mmckInfo.cksize);
 
     wmw->lpWaveFormat = HeapAlloc(GetProcessHeap(), 0, mmckInfo.cksize);
@@ -262,10 +262,10 @@ static	DWORD WAVE_mciReadFmt(WINE_MCIWAV
 	return MCIERR_INVALID_FILE;
 
     TRACE("wFormatTag=%04X !\n",   wmw->lpWaveFormat->wFormatTag);
-    TRACE("nChannels=%d \n",       wmw->lpWaveFormat->nChannels);
+    TRACE("nChannels=%d\n",       wmw->lpWaveFormat->nChannels);
     TRACE("nSamplesPerSec=%ld\n",  wmw->lpWaveFormat->nSamplesPerSec);
     TRACE("nAvgBytesPerSec=%ld\n", wmw->lpWaveFormat->nAvgBytesPerSec);
-    TRACE("nBlockAlign=%d \n",     wmw->lpWaveFormat->nBlockAlign);
+    TRACE("nBlockAlign=%d\n",     wmw->lpWaveFormat->nBlockAlign);
     TRACE("wBitsPerSample=%u !\n", wmw->lpWaveFormat->wBitsPerSample);
     if (r >= (long)sizeof(WAVEFORMATEX))
 	TRACE("cbSize=%u !\n", wmw->lpWaveFormat->cbSize);
@@ -276,7 +276,7 @@ static	DWORD WAVE_mciReadFmt(WINE_MCIWAV
 	TRACE("can't find data chunk\n");
 	return MCIERR_INVALID_FILE;
     }
-    TRACE("Chunk Found ckid=%.4s fccType=%.4s cksize=%08lX \n",
+    TRACE("Chunk Found ckid=%.4s fccType=%.4s cksize=%08lX\n",
 	  (LPSTR)&wmw->ckWaveData.ckid, (LPSTR)&wmw->ckWaveData.fccType, wmw->ckWaveData.cksize);
     TRACE("nChannels=%d nSamplesPerSec=%ld\n",
 	  wmw->lpWaveFormat->nChannels, wmw->lpWaveFormat->nSamplesPerSec);
@@ -406,7 +406,7 @@ static DWORD WAVE_mciOpen(UINT wDevID, D
 			if (mmioDescend(wmw->hFile, lpckMainRIFF, NULL, 0) != 0) {
 			    dwRet = MCIERR_INVALID_FILE;
 			} else {
-			    TRACE("ParentChunk ckid=%.4s fccType=%.4s cksize=%08lX \n",
+			    TRACE("ParentChunk ckid=%.4s fccType=%.4s cksize=%08lX\n",
 				(LPSTR)&(lpckMainRIFF->ckid),
 				(LPSTR) &(lpckMainRIFF->fccType),
 				(lpckMainRIFF->cksize));
Index: dlls/winmm/tests/mixer.c
===================================================================
RCS file: /var/cvs/wine/dlls/winmm/tests/mixer.c,v
retrieving revision 1.11
diff -u -p -r1.11 mixer.c
--- dlls/winmm/tests/mixer.c	16 Jun 2005 10:45:25 -0000	1.11
+++ dlls/winmm/tests/mixer.c	9 Nov 2005 16:21:40 -0000
@@ -431,7 +431,7 @@ static void mixer_test_deviceA(int devic
                       d,mixerlineA.szShortName, mixerlineA.szName,
                       mixerlineA.dwDestination,mixerlineA.dwSource);
                 trace("        LineID=%08lx Channels=%ld "
-                      "Connections=%ld Controls=%ld \n",
+                      "Connections=%ld Controls=%ld\n",
                       mixerlineA.dwLineID,mixerlineA.cChannels,
                       mixerlineA.cConnections,mixerlineA.cControls);
                 trace("        State=0x%08lx(%s)\n",
@@ -468,7 +468,7 @@ static void mixer_test_deviceA(int devic
                               s,mixerlineA.szShortName, mixerlineA.szName,
                               mixerlineA.dwDestination,mixerlineA.dwSource);
                         trace("          LineID=%08lx Channels=%ld "
-                              "Connections=%ld Controls=%ld \n",
+                              "Connections=%ld Controls=%ld\n",
                               mixerlineA.dwLineID,mixerlineA.cChannels,
                               mixerlineA.cConnections,mixerlineA.cControls);
                         trace("          State=0x%08lx(%s)\n",
@@ -821,7 +821,7 @@ static void mixer_test_deviceW(int devic
                       d,szShortName,szName,
                       mixerlineW.dwDestination,mixerlineW.dwSource);
                 trace("        LineID=%08lx Channels=%ld "
-                      "Connections=%ld Controls=%ld \n",
+                      "Connections=%ld Controls=%ld\n",
                       mixerlineW.dwLineID,mixerlineW.cChannels,
                       mixerlineW.cConnections,mixerlineW.cControls);
                 trace("        State=0x%08lx(%s)\n",
@@ -866,7 +866,7 @@ static void mixer_test_deviceW(int devic
                               s,szShortName,szName,
                               mixerlineW.dwDestination,mixerlineW.dwSource);
                         trace("          LineID=%08lx Channels=%ld "
-                              "Connections=%ld Controls=%ld \n",
+                              "Connections=%ld Controls=%ld\n",
                               mixerlineW.dwLineID,mixerlineW.cChannels,
                               mixerlineW.cConnections,mixerlineW.cControls);
                         trace("          State=0x%08lx(%s)\n",
Index: dlls/winmm/winealsa/audio.c
===================================================================
RCS file: /var/cvs/wine/dlls/winmm/winealsa/audio.c,v
retrieving revision 1.98
diff -u -p -r1.98 audio.c
--- dlls/winmm/winealsa/audio.c	5 Nov 2005 10:44:10 -0000	1.98
+++ dlls/winmm/winealsa/audio.c	9 Nov 2005 16:21:40 -0000
@@ -744,7 +744,7 @@ static void ALSA_TraceParameters(snd_pcm
 #define X(x) ((x)? "true" : "false")
     if (full)
 	TRACE("FLAGS: sampleres=%s overrng=%s pause=%s resume=%s syncstart=%s batch=%s block=%s double=%s "
-    	      "halfd=%s joint=%s \n",
+    	      "halfd=%s joint=%s\n",
 	      X(snd_pcm_hw_params_can_mmap_sample_resolution(hw_params)),
 	      X(snd_pcm_hw_params_can_overrange(hw_params)),
 	      X(snd_pcm_hw_params_can_pause(hw_params)),
Index: dlls/winmm/winearts/audio.c
===================================================================
RCS file: /var/cvs/wine/dlls/winmm/winearts/audio.c,v
retrieving revision 1.31
diff -u -p -r1.31 audio.c
--- dlls/winmm/winearts/audio.c	27 Apr 2005 09:39:55 -0000	1.31
+++ dlls/winmm/winearts/audio.c	9 Nov 2005 16:21:40 -0000
@@ -1536,7 +1536,7 @@ DWORD WINAPI ARTS_wodMessage(UINT wDevID
  */
 static	DWORD	widGetNumDevs(void)
 {
-    TRACE("%d \n",MAX_WAVEINDRV);
+    TRACE("%d\n", MAX_WAVEINDRV);
     return MAX_WAVEINDRV;
 }
 
Index: dlls/winmm/wineesd/audio.c
===================================================================
RCS file: /var/cvs/wine/dlls/winmm/wineesd/audio.c,v
retrieving revision 1.3
diff -u -p -r1.3 audio.c
--- dlls/winmm/wineesd/audio.c	24 Oct 2005 15:02:30 -0000	1.3
+++ dlls/winmm/wineesd/audio.c	9 Nov 2005 16:21:41 -0000
@@ -1544,7 +1544,7 @@ DWORD WINAPI ESD_wodMessage(UINT wDevID,
  */
 static	DWORD	widGetNumDevs(void)
 {
-    TRACE("%d \n",MAX_WAVEINDRV);
+    TRACE("%d\n", MAX_WAVEINDRV);
     return MAX_WAVEINDRV;
 }
 
Index: dlls/winsock/socket16.c
===================================================================
RCS file: /var/cvs/wine/dlls/winsock/socket16.c,v
retrieving revision 1.3
diff -u -p -r1.3 socket16.c
--- dlls/winsock/socket16.c	31 Mar 2005 15:28:54 -0000	1.3
+++ dlls/winsock/socket16.c	9 Nov 2005 16:21:41 -0000
@@ -599,6 +599,6 @@ INT16 WINAPI __WSAFDIsSet16(SOCKET16 s, 
  */
 INT16 WINAPI WSARecvEx16(SOCKET16 s, char *buf, INT16 len, INT16 *flags)
 {
-    FIXME("(WSARecvEx16) partial packet return value not set \n");
+    FIXME("(WSARecvEx16) partial packet return value not set\n");
     return recv16(s, buf, len, *flags);
 }
Index: dlls/winsock/tests/sock.c
===================================================================
RCS file: /var/cvs/wine/dlls/winsock/tests/sock.c,v
retrieving revision 1.28
diff -u -p -r1.28 sock.c
--- dlls/winsock/tests/sock.c	8 Nov 2005 10:56:27 -0000	1.28
+++ dlls/winsock/tests/sock.c	9 Nov 2005 16:21:41 -0000
@@ -819,7 +819,7 @@ static void test_set_getsockopt(void)
         ok( !lingval.l_onoff == !linger_testvals[i].l_onoff &&
                 (lingval.l_linger == linger_testvals[i].l_linger ||
                  (!lingval.l_linger && !linger_testvals[i].l_onoff))
-                , "getsockopt(SO_LINGER #%d) returned wrong value %d,%d not %d,%d \n", i, 
+                , "getsockopt(SO_LINGER #%d) returned wrong value %d,%d not %d,%d\n", i, 
                  lingval.l_onoff, lingval.l_linger,
                  linger_testvals[i].l_onoff, linger_testvals[i].l_linger);
     }
@@ -1322,9 +1322,9 @@ START_TEST( sock )
 
     for (i = 0; i < NUM_TESTS; i++)
     {
-        trace ( " **** STARTING TEST %d **** \n", i );
+        trace ( " **** STARTING TEST %d ****\n", i );
         do_test (  &tests[i] );
-        trace ( " **** TEST %d COMPLETE **** \n", i );
+        trace ( " **** TEST %d COMPLETE ****\n", i );
     }
 
     test_UDP();
Index: dlls/wintab32/context.c
===================================================================
RCS file: /var/cvs/wine/dlls/wintab32/context.c,v
retrieving revision 1.13
diff -u -p -r1.13 context.c
--- dlls/wintab32/context.c	12 Sep 2005 14:12:46 -0000	1.13
+++ dlls/wintab32/context.c	9 Nov 2005 16:21:41 -0000
@@ -852,7 +852,7 @@ int WINAPI WTDataPeek(HCTX hCtx, UINT wB
 
     if (bgn == context->PacketsQueued ||  end == context->PacketsQueued)
     {
-        TRACE("%i %i %i \n", bgn, end, context->PacketsQueued);
+        TRACE("%i %i %i\n", bgn, end, context->PacketsQueued);
         LeaveCriticalSection(&csTablet);
         return 0;
     }
Index: dlls/wsock32/socket.c
===================================================================
RCS file: /var/cvs/wine/dlls/wsock32/socket.c,v
retrieving revision 1.33
diff -u -p -r1.33 socket.c
--- dlls/wsock32/socket.c	11 Mar 2005 13:25:42 -0000	1.33
+++ dlls/wsock32/socket.c	9 Nov 2005 16:02:52 -0000
@@ -606,7 +606,7 @@ DWORD WINAPI WsControl(DWORD protocol,
          char type= *(unsigned char*)(inbuf+15); /* 0x2: don't fragment*/
 #endif
 
-      FIXME("(ICMP_ECHO) to 0x%08x stub \n", addr);
+      FIXME("(ICMP_ECHO) to 0x%08x stub\n", addr);
       break;
    }
 
@@ -635,7 +635,7 @@ DWORD WINAPI WsControl(DWORD protocol,
  */
 INT WINAPI WSARecvEx(SOCKET s, char *buf, INT len, INT *flags)
 {
-    FIXME("(WSARecvEx) partial packet return value not set \n");
+    FIXME("(WSARecvEx) partial packet return value not set\n");
     return recv(s, buf, len, *flags);
 }
 
Index: dlls/x11drv/event.c
===================================================================
RCS file: /var/cvs/wine/dlls/x11drv/event.c,v
retrieving revision 1.59
diff -u -p -r1.59 event.c
--- dlls/x11drv/event.c	12 Sep 2005 15:14:07 -0000	1.59
+++ dlls/x11drv/event.c	9 Nov 2005 16:02:40 -0000
@@ -570,7 +570,7 @@ static void EVENT_PropertyNotify( HWND h
 {
   XPropertyEvent *event = &xev->xproperty;
   /* Check if we have any resources to free */
-  TRACE("Received PropertyNotify event: \n");
+  TRACE("Received PropertyNotify event:\n");
 
   switch(event->state)
   {
@@ -849,7 +849,7 @@ static void EVENT_DropURLs( HWND hWnd, X
 	      TRACE("drop file %s as %s\n", p+5, p_drop);
 	      p_drop += len+1;
 	    } else {
-	      WARN("can't convert file %s to dos name \n", p+5);
+	      WARN("can't convert file %s to dos name\n", p+5);
 	    }
 	  } else {
 	    WARN("unknown mime type %s\n", p);
Index: dlls/x11drv/keyboard.c
===================================================================
RCS file: /var/cvs/wine/dlls/x11drv/keyboard.c,v
retrieving revision 1.78
diff -u -p -r1.78 keyboard.c
--- dlls/x11drv/keyboard.c	11 Oct 2005 19:27:22 -0000	1.78
+++ dlls/x11drv/keyboard.c	9 Nov 2005 16:02:24 -0000
@@ -2047,7 +2047,7 @@ UINT X11DRV_MapVirtualKeyEx(UINT wCode, 
 
 			if (!e.keycode)
 			{
-			  WARN("Unknown virtual key %X !!! \n", wCode);
+			  WARN("Unknown virtual key %X !!!\n", wCode);
                           wine_tsx11_unlock();
 			  return 0; /* whatever */
 			}
@@ -2359,7 +2359,7 @@ INT X11DRV_ToUnicodeEx(UINT virtKey, UIN
 
     if (!e.keycode && virtKey != VK_NONAME)
       {
-	WARN("Unknown virtual key %X !!! \n",virtKey);
+	WARN("Unknown virtual key %X !!!\n", virtKey);
         wine_tsx11_unlock();
 	return virtKey; /* whatever */
       }
Index: dlls/x11drv/palette.c
===================================================================
RCS file: /var/cvs/wine/dlls/x11drv/palette.c,v
retrieving revision 1.17
diff -u -p -r1.17 palette.c
--- dlls/x11drv/palette.c	14 Jun 2005 18:12:15 -0000	1.17
+++ dlls/x11drv/palette.c	9 Nov 2005 16:02:12 -0000
@@ -464,7 +464,7 @@ static BOOL X11DRV_PALETTE_BuildSharedMa
      {
 	int c_min = 0, c_max = palette_size, c_val;
 
-	TRACE("Dynamic colormap... \n");
+	TRACE("Dynamic colormap...\n");
 
 	/* let's become the first client that actually follows
 	 * X guidelines and does binary search...
Index: dlls/x11drv/xfont.c
===================================================================
RCS file: /var/cvs/wine/dlls/x11drv/xfont.c,v
retrieving revision 1.25
diff -u -p -r1.25 xfont.c
--- dlls/x11drv/xfont.c	9 Sep 2005 10:19:44 -0000	1.25
+++ dlls/x11drv/xfont.c	9 Nov 2005 16:02:02 -0000
@@ -789,7 +789,7 @@ static int LFD_InitFontInfo( fontInfo* f
                }
                else
                {
-                  FIXME("font '%s' has unknown registry '%s' and character encoding '%s' \n",
+                  FIXME("font '%s' has unknown registry '%s' and character encoding '%s'\n",
                        fullname, lfd->charset_registry, lfd->charset_encoding);
                   j = 255;
                }
@@ -3062,7 +3062,7 @@ static X_PHYSFONT XFONT_RealizeFont( con
 
 	    if(abs(plf->lfHeight) > MAX_FONT_SIZE) {
 		ERR(
-  "plf->lfHeight = %d, Creating a 100 pixel font and rescaling metrics \n",
+  "plf->lfHeight = %d, Creating a 100 pixel font and rescaling metrics\n",
 		    plf->lfHeight);
 		pfo->rescale = fabs(plf->lfHeight / 100.0);
 		if(plf->lfHeight > 0) plf->lfHeight = 100;
Index: dlls/x11drv/xrandr.c
===================================================================
RCS file: /var/cvs/wine/dlls/x11drv/xrandr.c,v
retrieving revision 1.11
diff -u -p -r1.11 xrandr.c
--- dlls/x11drv/xrandr.c	12 Aug 2005 10:35:46 -0000	1.11
+++ dlls/x11drv/xrandr.c	9 Nov 2005 16:01:45 -0000
@@ -296,7 +296,7 @@ void X11DRV_XRandR_Init(void)
                 nmodes++;
 		TRACE(" <default>");
             }
-	    TRACE(" Hz \n");
+	    TRACE(" Hz\n");
         }
     }
     wine_tsx11_unlock();
Index: programs/winevdm/winevdm.c
===================================================================
RCS file: /var/cvs/wine/programs/winevdm/winevdm.c,v
retrieving revision 1.9
diff -u -p -r1.9 winevdm.c
--- programs/winevdm/winevdm.c	27 May 2005 19:28:23 -0000	1.9
+++ programs/winevdm/winevdm.c	9 Nov 2005 16:21:47 -0000
@@ -161,7 +161,7 @@ static BOOL read_pif_file( HANDLE hFile,
                     pif386rec.memmin, pif386rec.memmax,
                     pif386rec.emsmin, pif386rec.emsmax,
                     pif386rec.xmsmin, pif386rec.xmsmax);
-            WINE_TRACE("386rec: option 0x%x memory 0x%x video 0x%x \n",
+            WINE_TRACE("386rec: option 0x%x memory 0x%x video 0x%x\n",
                     pif386rec.optflags, pif386rec.memflags,
                     pif386rec.videoflags);
             WINE_TRACE("386rec: optional parameters %s\n",


More information about the wine-patches mailing list