Fix compilation of C code. Remove warnings.
This commit is contained in:
parent
87b05f2885
commit
aa00142949
|
@ -39,7 +39,7 @@
|
||||||
#define FCGI_stdout stdout
|
#define FCGI_stdout stdout
|
||||||
#define FCGI_stderr stderr
|
#define FCGI_stderr stderr
|
||||||
#define logstream stderr
|
#define logstream stderr
|
||||||
#endif //SERVER
|
#endif /*SERVER*/
|
||||||
|
|
||||||
faixbox_param_t * gene_faixbox( box_param_t *box)
|
faixbox_param_t * gene_faixbox( box_param_t *box)
|
||||||
{
|
{
|
||||||
|
@ -59,7 +59,7 @@ faixbox_param_t * gene_faixbox( box_param_t *box)
|
||||||
|
|
||||||
if( faix->version%2){
|
if( faix->version%2){
|
||||||
subfaixbox8_param_t *subfaixbox;
|
subfaixbox8_param_t *subfaixbox;
|
||||||
int i;
|
size_t i;
|
||||||
|
|
||||||
faix->subfaixbox.byte8_params = (subfaixbox8_param_t *)malloc( sizeof(subfaixbox8_param_t));
|
faix->subfaixbox.byte8_params = (subfaixbox8_param_t *)malloc( sizeof(subfaixbox8_param_t));
|
||||||
|
|
||||||
|
@ -83,7 +83,7 @@ faixbox_param_t * gene_faixbox( box_param_t *box)
|
||||||
}
|
}
|
||||||
else{
|
else{
|
||||||
subfaixbox4_param_t *subfaixbox;
|
subfaixbox4_param_t *subfaixbox;
|
||||||
int i;
|
size_t i;
|
||||||
|
|
||||||
faix->subfaixbox.byte4_params = (subfaixbox4_param_t *)malloc( sizeof(subfaixbox4_param_t));
|
faix->subfaixbox.byte4_params = (subfaixbox4_param_t *)malloc( sizeof(subfaixbox4_param_t));
|
||||||
|
|
||||||
|
@ -182,10 +182,11 @@ Byte8_t get_elemLen( faixbox_param_t *faix, Byte8_t elem_id, Byte8_t row_id)
|
||||||
|
|
||||||
Byte4_t get_elemAux( faixbox_param_t *faix, Byte8_t elem_id, Byte8_t row_id)
|
Byte4_t get_elemAux( faixbox_param_t *faix, Byte8_t elem_id, Byte8_t row_id)
|
||||||
{
|
{
|
||||||
|
Byte8_t nmax;
|
||||||
if( faix->version <2)
|
if( faix->version <2)
|
||||||
return -1;
|
return -1;
|
||||||
|
|
||||||
Byte8_t nmax = get_nmax( faix);
|
nmax = get_nmax( faix);
|
||||||
if( faix->version%2)
|
if( faix->version%2)
|
||||||
return faix->subfaixbox.byte8_params->aux[ row_id*nmax+elem_id];
|
return faix->subfaixbox.byte8_params->aux[ row_id*nmax+elem_id];
|
||||||
else
|
else
|
||||||
|
|
Loading…
Reference in New Issue