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>
This commit is contained in:
parent
7bc325a1b2
commit
6d2231e8fa
@ -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;
|
||||
|
Loading…
Reference in New Issue
Block a user