From b6877457bfc72fc3a4345157535dc6e499494128 Mon Sep 17 00:00:00 2001 From: Stanislaw Halik Date: Sat, 3 Oct 2015 11:38:00 +0200 Subject: ft: don't alloc "int i" as bss --- clientfiles/very-important-source-code/npclient.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'clientfiles') diff --git a/clientfiles/very-important-source-code/npclient.c b/clientfiles/very-important-source-code/npclient.c index b8ec65ff..5e403ede 100644 --- a/clientfiles/very-important-source-code/npclient.c +++ b/clientfiles/very-important-source-code/npclient.c @@ -268,7 +268,8 @@ static __inline void enhance(unsigned char buf[], unsigned int size, NP_EXPORT(int) NP_GetData(tir_data_t * data) { - static int frameno = 0, i; + static int frameno = 0; + int i; #if DEBUG int recv = 0; #endif -- cgit v1.2.3