summaryrefslogtreecommitdiffhomepage
path: root/clientfiles
diff options
context:
space:
mode:
authorStanislaw Halik <sthalik@misaki.pl>2015-10-03 11:38:00 +0200
committerStanislaw Halik <sthalik@misaki.pl>2015-10-03 11:38:00 +0200
commitb6877457bfc72fc3a4345157535dc6e499494128 (patch)
treeb129dc95b61845f8e51be83c012f71325e112895 /clientfiles
parentf6f0bca1bf1c3c07a1bbc002c5ae9743f4490e6b (diff)
ft: don't alloc "int i" as bss
Diffstat (limited to 'clientfiles')
-rw-r--r--clientfiles/very-important-source-code/npclient.c3
1 files changed, 2 insertions, 1 deletions
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