rpcrt4/tests: Fix indentation warning on GCC 6.
Signed-off-by: Nikolay Sivov <nsivov@codeweavers.com> Signed-off-by: Alexandre Julliard <julliard@winehq.org>
This commit is contained in:
parent
4d0a353bcc
commit
6ac3c09a76
|
@ -2433,9 +2433,9 @@ static void test_MesEncodeFixedBufferHandleCreate(void)
|
|||
status = MesEncodeFixedBufferHandleCreate(buffer, 0, &encoded_size, &handle);
|
||||
todo_wine
|
||||
ok(status == RPC_S_INVALID_ARG, "got %d\n", status);
|
||||
if (status == RPC_S_OK)
|
||||
if (status == RPC_S_OK) {
|
||||
MesHandleFree(handle);
|
||||
|
||||
}
|
||||
status = MesEncodeFixedBufferHandleCreate(buffer, 32, NULL, &handle);
|
||||
ok(status == RPC_S_INVALID_ARG, "got %d\n", status);
|
||||
|
||||
|
|
Loading…
Reference in New Issue