Removed all trailing whitespace.

This commit is contained in:
Johan Wikman
2015-08-31 13:00:59 +03:00
parent c564b40c54
commit 6601dfaaa0
2 changed files with 261 additions and 267 deletions

View File

@ -619,7 +619,7 @@ static logfile_t* logmanager_get_logfile(
* @param use_valist does write involve formatting of the string and use of * @param use_valist does write involve formatting of the string and use of
* valist argument * valist argument
* @param spread_down if true, log string is spread to all logs having * @param spread_down if true, log string is spread to all logs having
* larger id. * larger id
* @param rotate if set, closes currently open log file and opens a * @param rotate if set, closes currently open log file and opens a
* new one * new one
* @param str_len length of formatted string * @param str_len length of formatted string
@ -972,7 +972,6 @@ static char* blockbuf_get_writepos(
blockbuf_t* bb; blockbuf_t* bb;
ss_debug(bool succp;) ss_debug(bool succp;)
CHK_LOGMANAGER(lm); CHK_LOGMANAGER(lm);
lf = &lm->lm_logfile[id]; lf = &lm->lm_logfile[id];
CHK_LOGFILE(lf); CHK_LOGFILE(lf);
@ -988,7 +987,6 @@ static char* blockbuf_get_writepos(
*/ */
node = bb_list->mlist_first; node = bb_list->mlist_first;
/** Loop over blockbuf list to find write position */ /** Loop over blockbuf list to find write position */
while (true) { while (true) {
CHK_MLIST_NODE(node); CHK_MLIST_NODE(node);
@ -1070,7 +1068,6 @@ static char* blockbuf_get_writepos(
continue; continue;
} }
}else if(bb->bb_state == BB_CLEARED){ }else if(bb->bb_state == BB_CLEARED){
/** /**
@ -1112,9 +1109,6 @@ static char* blockbuf_get_writepos(
continue; continue;
} }
}else if (bb->bb_state == BB_READY){ }else if (bb->bb_state == BB_READY){
/** /**
* There is space for new log string. * There is space for new log string.