Java程序辅导

C C++ Java Python Processing编程在线培训 程序编写 软件开发 视频讲解

客服在线QQ:2653320439 微信:ittutor Email:itutor@qq.com
wx: cjtutor
QQ: 2653320439
Linux-Kernel Archive: [PATCH] MIPS: tools: no need to initialise statics to 0 [PATCH] MIPS: tools: no need to initialise statics to 0 From: Jason Wang Date: Sat May 07 2022 - 22:32:03 EST Next message: Jason Wang: "[PATCH] w1: no need to initialise statics to 0" Previous message: Jason Wang: "[PATCH] xtensa: no need to initialise statics to 0" Messages sorted by: [ date ] [ thread ] [ subject ] [ author ] Static variables do not need to be initialised to 0, because compiler will initialise all uninitialised statics to 0. Thus, remove the unneeded initializations. Signed-off-by: Jason Wang --- arch/mips/boot/tools/relocs.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/arch/mips/boot/tools/relocs.c b/arch/mips/boot/tools/relocs.c index 1bf53f3524b3..02fc85f3e8ff 100644 --- a/arch/mips/boot/tools/relocs.c +++ b/arch/mips/boot/tools/relocs.c @@ -351,7 +351,7 @@ static void read_symtabs(FILE *fp) static void read_relocs(FILE *fp) { - static unsigned long base = 0; + static unsigned long base; int i, j; if (!base) { -- 2.35.1 Next message: Jason Wang: "[PATCH] w1: no need to initialise statics to 0" Previous message: Jason Wang: "[PATCH] xtensa: no need to initialise statics to 0" Messages sorted by: [ date ] [ thread ] [ subject ] [ author ]