Skip to content
Snippets Groups Projects
Commit 9bb0a1bf authored by Luca Ceresoli's avatar Luca Ceresoli Committed by Wolfgang Denk
Browse files

net/tftp.c: cosmetic: do not initialise statics to 0 or NULL


This removes the following checkpatch issue:
 - ERROR: do not initialise statics to 0 or NULL

Signed-off-by: default avatarLuca Ceresoli <luca.ceresoli@comelit.it>
Cc: Wolfgang Denk <wd@denx.de>
parent 0bdd8acc
No related branches found
No related tags found
No related merge requests found
......@@ -125,8 +125,8 @@ static unsigned short TftpBlkSizeOption = TFTP_MTU_BLOCKSIZE;
#define MTFTP_BITMAPSIZE 0x1000
static unsigned *Bitmap;
static int PrevBitmapHole, Mapsize = MTFTP_BITMAPSIZE;
static uchar ProhibitMcast = 0, MasterClient = 0;
static uchar Multicast = 0;
static uchar ProhibitMcast, MasterClient;
static uchar Multicast;
extern IPaddr_t Mcast_addr;
static int Mcast_port;
static ulong TftpEndingBlock; /* can get 'last' block before done..*/
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment