janitorial: In multiline strings there is no need for '\' at the end of the lines.
This commit is contained in:
parent
43c94c95ce
commit
c7e00c9f49
|
@ -50,7 +50,7 @@ static void test_PrintDlgA(void)
|
|||
SetLastError(0xdeadbeef);
|
||||
res = PrintDlgA(NULL);
|
||||
ok( !res && (CommDlgExtendedError() == CDERR_INITIALIZATION),
|
||||
"returned %d with 0x%x and 0x%x (expected '0' and " \
|
||||
"returned %d with 0x%x and 0x%x (expected '0' and "
|
||||
"CDERR_INITIALIZATION)\n", res, GetLastError(), CommDlgExtendedError());
|
||||
|
||||
ZeroMemory(pDlg, sizeof(PRINTDLGA));
|
||||
|
@ -58,7 +58,7 @@ static void test_PrintDlgA(void)
|
|||
SetLastError(0xdeadbeef);
|
||||
res = PrintDlgA(pDlg);
|
||||
ok( !res && (CommDlgExtendedError() == CDERR_STRUCTSIZE),
|
||||
"returned %d with 0x%x and 0x%x (expected '0' and " \
|
||||
"returned %d with 0x%x and 0x%x (expected '0' and "
|
||||
"CDERR_STRUCTSIZE)\n", res, GetLastError(), CommDlgExtendedError());
|
||||
|
||||
|
||||
|
@ -68,7 +68,7 @@ static void test_PrintDlgA(void)
|
|||
SetLastError(0xdeadbeef);
|
||||
res = PrintDlgA(pDlg);
|
||||
ok( res || (CommDlgExtendedError() == PDERR_NODEFAULTPRN),
|
||||
"returned %d with 0x%x and 0x%x (expected '!= 0' or '0' and " \
|
||||
"returned %d with 0x%x and 0x%x (expected '!= 0' or '0' and "
|
||||
"PDERR_NODEFAULTPRN)\n", res, GetLastError(), CommDlgExtendedError());
|
||||
|
||||
HeapFree(GetProcessHeap(), 0, pDlg);
|
||||
|
|
|
@ -1169,7 +1169,7 @@ IDirectDrawImpl_TestCooperativeLevel(IDirectDraw7 *iface)
|
|||
|
||||
case WINED3DERR_DRIVERINTERNALERROR:
|
||||
default:
|
||||
ERR("(%p) Unexpected return value %08x from wineD3D, " \
|
||||
ERR("(%p) Unexpected return value %08x from wineD3D, "
|
||||
" returning DD_OK\n", This, hr);
|
||||
}
|
||||
|
||||
|
|
|
@ -68,7 +68,7 @@ typedef struct _MSVCRT_EXCEPTION_FRAME
|
|||
#if defined(__GNUC__) && defined(__i386__)
|
||||
inline static void call_finally_block( void *code_block, void *base_ptr )
|
||||
{
|
||||
__asm__ __volatile__ ("movl %1,%%ebp; call *%%eax" \
|
||||
__asm__ __volatile__ ("movl %1,%%ebp; call *%%eax"
|
||||
: : "a" (code_block), "g" (base_ptr));
|
||||
}
|
||||
|
||||
|
|
|
@ -83,13 +83,13 @@ static void run_apibuf_tests(void)
|
|||
SetLastError(0xdeadbeef);
|
||||
res = pNetApiBufferAllocate(0, (LPVOID *)NULL);
|
||||
ok( (res == ERROR_INVALID_PARAMETER) && (GetLastError() == 0xdeadbeef),
|
||||
"returned %d with 0x%x (expected ERROR_INVALID_PARAMETER with " \
|
||||
"returned %d with 0x%x (expected ERROR_INVALID_PARAMETER with "
|
||||
"0xdeadbeef)\n", res, GetLastError());
|
||||
|
||||
SetLastError(0xdeadbeef);
|
||||
res = pNetApiBufferAllocate(1024, (LPVOID *)NULL);
|
||||
ok( (res == ERROR_INVALID_PARAMETER) && (GetLastError() == 0xdeadbeef),
|
||||
"returned %d with 0x%x (expected ERROR_INVALID_PARAMETER with " \
|
||||
"returned %d with 0x%x (expected ERROR_INVALID_PARAMETER with "
|
||||
"0xdeadbeef)\n", res, GetLastError());
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue