diff options
| author | Stanislaw Halik <sthalik@misaki.pl> | 2015-10-03 11:38:00 +0200 | 
|---|---|---|
| committer | Stanislaw Halik <sthalik@misaki.pl> | 2015-10-03 11:38:00 +0200 | 
| commit | b6877457bfc72fc3a4345157535dc6e499494128 (patch) | |
| tree | b129dc95b61845f8e51be83c012f71325e112895 /clientfiles/very-important-source-code | |
| parent | f6f0bca1bf1c3c07a1bbc002c5ae9743f4490e6b (diff) | |
ft: don't alloc "int i" as bss
Diffstat (limited to 'clientfiles/very-important-source-code')
| -rw-r--r-- | clientfiles/very-important-source-code/npclient.c | 3 | 
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  | 
