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

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
......@@ -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
/*
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment