Removed unused variables and fixed GCC warnings
git-svn-id: https://svn.code.sf.net/p/nsis/code/NSIS/trunk@6259 212acab6-be3b-0410-9dea-997c60f758d6
This commit is contained in:
parent
c6fdb4436d
commit
2d99d7ad3e
26 changed files with 124 additions and 96 deletions
|
@ -146,10 +146,10 @@ typedef unsigned short UInt16;
|
|||
#define mini_memcpy memcpy
|
||||
|
||||
typedef struct {
|
||||
char *next_in;
|
||||
unsigned char *next_in;
|
||||
unsigned int avail_in;
|
||||
|
||||
char *next_out;
|
||||
unsigned char *next_out;
|
||||
unsigned int avail_out;
|
||||
|
||||
void *state;
|
||||
|
@ -325,10 +325,10 @@ typedef struct {
|
|||
|
||||
typedef struct {
|
||||
/* pointer back to the struct bz_stream */
|
||||
char *next_in;
|
||||
unsigned char *next_in;
|
||||
unsigned int avail_in;
|
||||
|
||||
char *next_out;
|
||||
unsigned char *next_out;
|
||||
unsigned int avail_out;
|
||||
|
||||
/* state indicator for this stream */
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue