[trunk] remove simple warnings.

This commit is contained in:
Mathieu Malaterre 2012-03-26 13:01:41 +00:00
parent 3b268d1656
commit 438cde4e70
1 changed files with 6 additions and 6 deletions

View File

@ -77,8 +77,8 @@ imgreg_param_t map_viewin2imgreg( const int fx, const int fy,
imgreg.sy = imgreg.fy; imgreg.sy = imgreg.fy;
} }
else{ else{
px = ceil((double)((rx+rw)*imgreg.fx)/(double)fx); px = (int)ceil((double)((rx+rw)*imgreg.fx)/(double)fx);
py = ceil((double)((ry+rh)*imgreg.fy)/(double)fy); py = (int)ceil((double)((ry+rh)*imgreg.fy)/(double)fy);
if( imgreg.fx < px) if( imgreg.fx < px)
px = imgreg.fx; px = imgreg.fx;
@ -113,10 +113,10 @@ void find_level( int maxlev, int *lev, int *fx, int *fy, int *xmin, int *ymin, i
} }
else if( *lev < maxlev-1 && ( *fx < xwidth || *fy < ywidth)) { else if( *lev < maxlev-1 && ( *fx < xwidth || *fy < ywidth)) {
/* Simulate the ceil function. */ /* Simulate the ceil function. */
*xmin = ceil((double)*xmin/(double)2.0); *xmin = (int)ceil((double)*xmin/(double)2.0);
*ymin = ceil((double)*ymin/(double)2.0); *ymin = (int)ceil((double)*ymin/(double)2.0);
*xmax = ceil((double)*xmax/(double)2.0); *xmax = (int)ceil((double)*xmax/(double)2.0);
*ymax = ceil((double)*ymax/(double)2.0); *ymax = (int)ceil((double)*ymax/(double)2.0);
(*lev) ++; (*lev) ++;
find_level ( maxlev, lev, fx, fy, xmin, ymin, xmax, ymax); find_level ( maxlev, lev, fx, fy, xmin, ymin, xmax, ymax);