Skip to content
Snippets Groups Projects
Commit 092b8e26 authored by Rene Brun's avatar Rene Brun
Browse files

Remove duplicate variable definition (thanks Maarten Ballintijn)

git-svn-id: http://root.cern.ch/svn/root/trunk@3243 27541ba8-7e3a-0410-8455-c3a389f83636
parent 2f374040
No related branches found
No related tags found
No related merge requests found
/* @(#)root/zip:$Name: $:$Id: Inflate.c,v 1.1.1.1 2000/05/16 17:00:47 rdm Exp $ */ /* @(#)root/zip:$Name: $:$Id: Inflate.c,v 1.2 2001/11/13 14:16:18 brun Exp $ */
/* Author: */ /* Author: */
#include <stdio.h> #include <stdio.h>
#include <stdlib.h> #include <stdlib.h>
...@@ -347,8 +347,8 @@ static ush mask[] = { ...@@ -347,8 +347,8 @@ static ush mask[] = {
static ulg bb; /* bit buffer */ static ulg bb; /* bit buffer */
static unsigned bk; /* bits in bit buffer */ static unsigned bk; /* bits in bit buffer */
static uch *ibufptr; static uch *ibufptr,*obufptr;
static long ibufcnt; static long ibufcnt, obufcnt;
#define CHECK_EOF #define CHECK_EOF
...@@ -1131,9 +1131,6 @@ int R__Inflate_free() ...@@ -1131,9 +1131,6 @@ int R__Inflate_free()
***********************************************************************/ ***********************************************************************/
#define HDRSIZE 9 #define HDRSIZE 9
static uch *ibufptr,*obufptr;
static long ibufcnt, obufcnt;
void R__unzip(int *srcsize, uch *src, int *tgtsize, uch *tgt, int *irep) void R__unzip(int *srcsize, uch *src, int *tgtsize, uch *tgt, int *irep)
{ {
long isize; long isize;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment