janitorial: Remove stray '\' at end of lines.
This commit is contained in:
parent
290ae94e66
commit
22684cc767
|
@ -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;
|
||||
|
|
|
@ -123,7 +123,7 @@ static const char *debugstr_filetime (LPFILETIME time) {
|
|||
|
||||
FileTimeToSystemTime (time, &sysTime);
|
||||
|
||||
return wine_dbg_sprintf ("\'%02i. %s %04i %02i:%02i:%02i\'", \
|
||||
return wine_dbg_sprintf ("\'%02i. %s %04i %02i:%02i:%02i\'",
|
||||
sysTime.wDay, debugstr_month(sysTime.wMonth), sysTime.wYear,
|
||||
sysTime.wHour, sysTime.wMinute, sysTime.wSecond);
|
||||
}
|
||||
|
|
|
@ -276,7 +276,7 @@ static const char *debugstr_filetime (LPFILETIME time) {
|
|||
|
||||
FileTimeToSystemTime (time, &sysTime);
|
||||
|
||||
return wine_dbg_sprintf ("\'%02i. %s %04i %02i:%02i:%02i\'", \
|
||||
return wine_dbg_sprintf ("\'%02i. %s %04i %02i:%02i:%02i\'",
|
||||
sysTime.wDay, debugstr_month(sysTime.wMonth), sysTime.wYear,
|
||||
sysTime.wHour, sysTime.wMinute, sysTime.wSecond);
|
||||
}
|
||||
|
|
|
@ -90,7 +90,7 @@ const char *debugstr_filetime (LPFILETIME time) {
|
|||
|
||||
FileTimeToSystemTime (time, &sysTime);
|
||||
|
||||
return wine_dbg_sprintf ("\'%02i. %s %04i %02i:%02i:%02i\'", \
|
||||
return wine_dbg_sprintf ("\'%02i. %s %04i %02i:%02i:%02i\'",
|
||||
sysTime.wDay, debugstr_month(sysTime.wMonth), sysTime.wYear,
|
||||
sysTime.wHour, sysTime.wMinute, sysTime.wSecond);
|
||||
}
|
||||
|
|
|
@ -290,7 +290,7 @@ static const char *debugstr_filetime (LPFILETIME time) {
|
|||
|
||||
FileTimeToSystemTime (time, &sysTime);
|
||||
|
||||
return wine_dbg_sprintf ("\'%02i. %s %04i %02i:%02i:%02i\'", \
|
||||
return wine_dbg_sprintf ("\'%02i. %s %04i %02i:%02i:%02i\'",
|
||||
sysTime.wDay, debugstr_month(sysTime.wMonth), sysTime.wYear,
|
||||
sysTime.wHour, sysTime.wMinute, sysTime.wSecond);
|
||||
}
|
||||
|
|
|
@ -715,7 +715,7 @@ static HRESULT WINAPI IDirectMusicCollectionImpl_IPersistStream_Load (LPPERSISTS
|
|||
if (This->pDesc->dwValidData & DMUS_OBJ_OBJECT)
|
||||
TRACE(" - GUID = %s\n", debugstr_dmguid(&This->pDesc->guidObject));
|
||||
if (This->pDesc->dwValidData & DMUS_OBJ_VERSION)
|
||||
TRACE(" - Version = %i,%i,%i,%i\n", (This->pDesc->vVersion.dwVersionMS >> 8) & 0x0000FFFF, This->pDesc->vVersion.dwVersionMS & 0x0000FFFF, \
|
||||
TRACE(" - Version = %i,%i,%i,%i\n", (This->pDesc->vVersion.dwVersionMS >> 8) & 0x0000FFFF, This->pDesc->vVersion.dwVersionMS & 0x0000FFFF,
|
||||
(This->pDesc->vVersion.dwVersionLS >> 8) & 0x0000FFFF, This->pDesc->vVersion.dwVersionLS & 0x0000FFFF);
|
||||
if (This->pDesc->dwValidData & DMUS_OBJ_NAME)
|
||||
TRACE(" - Name = %s\n", debugstr_w(This->pDesc->wszName));
|
||||
|
|
|
@ -437,7 +437,7 @@ void DP_MSG_ReplyReceived( IDirectPlay2AImpl* This, WORD wCommandId,
|
|||
* avoid problems.
|
||||
*/
|
||||
EnterCriticalSection( &This->unk->DP_lock );
|
||||
DPQ_REMOVE_ENTRY( This->dp2->replysExpected, replysExpected, replyExpected.wExpectedReply,\
|
||||
DPQ_REMOVE_ENTRY( This->dp2->replysExpected, replysExpected, replyExpected.wExpectedReply,
|
||||
==, wCommandId, lpReplyList );
|
||||
LeaveCriticalSection( &This->unk->DP_lock );
|
||||
|
||||
|
|
|
@ -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;
|
||||
}
|
||||
|
|
|
@ -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) {
|
||||
|
|
|
@ -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);
|
||||
|
|
|
@ -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;
|
||||
|
|
|
@ -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);
|
||||
|
|
Loading…
Reference in New Issue