Skip to content

Commit

Permalink
[ROSTESTS] Fix minor sort
Browse files Browse the repository at this point in the history
[ROSTESTS] Braces
  • Loading branch information
julenuri committed Jun 18, 2024
1 parent dc276fc commit a617ffe
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
3 changes: 2 additions & 1 deletion modules/rostests/apitests/kernel32/Pipes.c
Original file line number Diff line number Diff line change
Expand Up @@ -80,7 +80,8 @@ PipeReader(

if(dReadBufferSize == MINBUFFERSIZE)
ok(!Success, "Pipe's ReadFile returned TRUE, instead of expected FALSE\n");
else{
else
{
ok(Success, "Pipe's ReadFile returned FALSE, instead of expected TRUE\n");
if(dwLastError != 0)
trace("Last Error = 0x%lX\n",dwLastError);
Expand Down
2 changes: 1 addition & 1 deletion modules/rostests/apitests/kernel32/testlist.c
Original file line number Diff line number Diff line change
Expand Up @@ -43,6 +43,7 @@ extern void func_WideCharToMultiByte(void);

const struct test winetest_testlist[] =
{
{ "ActCtxWithXmlNamespaces", func_ActCtxWithXmlNamespaces },
{ "ConsoleCP", func_ConsoleCP },
{ "CreateProcess", func_CreateProcess },
{ "DefaultActCtx", func_DefaultActCtx },
Expand Down Expand Up @@ -79,6 +80,5 @@ const struct test winetest_testlist[] =
{ "TunnelCache", func_TunnelCache },
{ "UEFIFirmware", func_UEFIFirmware },
{ "WideCharToMultiByte", func_WideCharToMultiByte },
{ "ActCtxWithXmlNamespaces", func_ActCtxWithXmlNamespaces },
{ 0, 0 }
};

0 comments on commit a617ffe

Please sign in to comment.