[1.5] Remove a simple warning report

This commit is contained in:
Mathieu Malaterre 2012-03-16 16:43:24 +00:00
parent e0795464c1
commit da453218a4
2 changed files with 9 additions and 2 deletions

View File

@ -115,6 +115,13 @@ CODmarker_param_t get_CODmkrdata_from_j2kstream( Byte_t *CODstream)
if( *CODstream++ != 0xff || *CODstream++ != 0x52){
fprintf( FCGI_stderr, "Error, COD marker not found in the reconstructed j2kstream\n");
COD.Lcod = 0;
COD.Scod = 0;
COD.prog_order = 0;
COD.numOflayers = 0;
COD.numOfdecomp = 0;
COD.XPsiz = 0;
COD.YPsiz = 0;
return COD;
}

View File

@ -58,7 +58,7 @@
*
* @return initial query parameters
*/
query_param_t * get_initquery();
query_param_t * get_initquery(void);
/*
* get a pair of field name and value from the string starting fieldname=fieldval&... format
@ -151,7 +151,7 @@ query_param_t * parse_query( char *query_string)
return query_param;
}
query_param_t * get_initquery()
query_param_t * get_initquery(void)
{
query_param_t *query;
int i;