All keywords now followed by space.

Plus some missing Allman identation fixes.
This commit is contained in:
Johan Wikman
2015-10-21 15:35:33 +03:00
parent ba23fc6fa2
commit 18181e8cb9

View File

@ -1090,7 +1090,9 @@ static char* blockbuf_get_writepos(
* New node is created
*/
if ((bb = blockbuf_init(id)) == NULL)
{
return NULL;
}
CHK_BLOCKBUF(bb);
@ -2941,10 +2943,14 @@ static void filewriter_done(
{
id = (logfile_id_t)i;
if (use_stdout)
{
skygw_file_free(fw->fwr_file[id]);
}
else
{
skygw_file_close(fw->fwr_file[id], true);
}
}
fw->fwr_state = DONE;
case DONE:
case UNINIT: