aboutsummaryrefslogtreecommitdiff
path: root/lib/tftp.c
diff options
context:
space:
mode:
authorDaniel Stenberg <daniel@haxx.se>2011-07-04 22:10:32 +0200
committerDaniel Stenberg <daniel@haxx.se>2011-07-04 22:10:32 +0200
commitb680fd180bf31dd29d84f43d91b6ee56e62d452f (patch)
tree9ff675d7149994cd88bab0618e03ef405e8753a7 /lib/tftp.c
parentdc97475dedb96b73e3688b216bac42b3084cadf0 (diff)
code style: space between close paren and open brace
Diffstat (limited to 'lib/tftp.c')
-rw-r--r--lib/tftp.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/tftp.c b/lib/tftp.c
index 46b3ecfcb..24068fccb 100644
--- a/lib/tftp.c
+++ b/lib/tftp.c
@@ -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 {