[trunk] Remove simple warnings

This commit is contained in:
Mathieu Malaterre 2014-03-03 10:41:13 +00:00
parent 75715635e8
commit 339952c2af
2 changed files with 2 additions and 2 deletions

View File

@ -108,7 +108,7 @@ int main(int argc,char *argv[])
ext = strrchr( argv[2], '.' ); ext = strrchr( argv[2], '.' );
if( ext ) if( ext )
{ {
// strcasecmp ? /* strcasecmp ? */
if( strcmp(ext, ".jp2" ) == 0 ) if( strcmp(ext, ".jp2" ) == 0 )
{ {
return jpip_to_jp2(argc,argv); return jpip_to_jp2(argc,argv);

View File

@ -68,7 +68,7 @@ static double* parseToleranceValues( char* inArg, const int nbcomp)
free(outArgs); free(outArgs);
return NULL; return NULL;
} }
// else /* else */
return outArgs; return outArgs;
} }