Commit b4aadd20 authored by Wen Zhiwei's avatar Wen Zhiwei Committed by David S. Miller
Browse files

net:Remove initialization of static variables to 0



Delete the initialization of three static variables
because it is meaningless.

Signed-off-by: default avatarWen Zhiwei <wenzhiwei@kylinos.cn>
Signed-off-by: default avatarDavid S. Miller <davem@davemloft.net>
parent fd3a4590
Loading
Loading
Loading
Loading
+3 −3
Original line number Diff line number Diff line
@@ -38,10 +38,10 @@
	-------------------------------------------------------------
*/
#ifdef COMMON_MB_POOL
static	SMbuf *mb_start = 0 ;
static	SMbuf *mb_free = 0 ;
static	SMbuf *mb_start;
static	SMbuf *mb_free;
static	int mb_init = FALSE ;
static	int call_count = 0 ;
static	int call_count;
#endif

/*