diff options
| author | Luca Ceresoli <luca.ceresoli@comelit.it> | 2011-05-14 05:50:01 +0000 |
|---|---|---|
| committer | Wolfgang Denk <wd@denx.de> | 2011-05-19 21:36:08 +0200 |
| commit | 6d2231e8fa21f4bc4fcff3690146540f30984d61 (patch) | |
| tree | 5edcdce5d5b1f76ba7dd7a00c75f2cea12f923ef /net/tftp.c | |
| parent | 7bc325a1b2dfda4a16789cc3b9387dbe1174af41 (diff) | |
| download | olio-uboot-2014.01-6d2231e8fa21f4bc4fcff3690146540f30984d61.tar.xz olio-uboot-2014.01-6d2231e8fa21f4bc4fcff3690146540f30984d61.zip | |
net/tftp.c: cosmetic: trailing statements should be on next line
This removes the following checkpatch issue:
- ERROR: trailing statements should be on next line
Signed-off-by: Luca Ceresoli <luca.ceresoli@comelit.it>
Cc: Wolfgang Denk <wd@denx.de>
Diffstat (limited to 'net/tftp.c')
| -rw-r--r-- | net/tftp.c | 9 |
1 files changed, 6 insertions, 3 deletions
diff --git a/net/tftp.c b/net/tftp.c index eacd529a9..f83c0d6f8 100644 --- a/net/tftp.c +++ b/net/tftp.c @@ -136,8 +136,10 @@ static void parse_multicast_oack(char *pkt, int len); static void mcast_cleanup(void) { - if (Mcast_addr) eth_mcast_join(Mcast_addr, 0); - if (Bitmap) free(Bitmap); + if (Mcast_addr) + eth_mcast_join(Mcast_addr, 0); + if (Bitmap) + free(Bitmap); Bitmap = NULL; Mcast_addr = Multicast = Mcast_port = 0; TftpEndingBlock = -1; @@ -703,7 +705,8 @@ static void parse_multicast_oack(char *pkt, int len) } } } - if (!port || !mc_adr || !mc) return; + if (!port || !mc_adr || !mc) + return; if (Multicast && MasterClient) { printf("I got a OACK as master Client, WRONG!\n"); return; |