code style: space between close paren and open brace

This commit is contained in:
Daniel Stenberg
2011-07-04 22:10:32 +02:00
parent dc97475ded
commit b680fd180b
9 changed files with 28 additions and 29 deletions

View File

@@ -627,7 +627,7 @@ static CURLcode tftp_rx(tftp_state_data_t *state, tftp_event_t event)
}
/* Check if completed (That is, a less than full packet is received) */
if(state->rbytes < (ssize_t)state->blksize+4){
if(state->rbytes < (ssize_t)state->blksize+4) {
state->state = TFTP_STATE_FIN;
}
else {