Fixed several format strings in printf's dealing with size_t values

This commit is contained in:
Ilia Popov
2010-11-11 23:17:48 +01:00
parent 977290f4a1
commit 2ecfb288d3
2 changed files with 4 additions and 4 deletions

View File

@@ -103,7 +103,7 @@ std::list<badPix>& dfInfo::getHotPixels()
}
/* updateRawImage() load into ri the actual pixel data from pathname if there is a single shot
* otherwise load each file from the pathNames list and extract a template from the media;
* the first file is used also for reading all information other than pixels
* the first file is used also for reading all information other than pixels
*/
void dfInfo::updateRawImage()
{
@@ -189,7 +189,7 @@ void dfInfo::updateBadPixelList( RawImage *df )
}
}
if( settings->verbose ){
printf( "Extracted %u pixels from darkframe %s\n", badPixels.size(),df->fname.c_str() );
printf( "Extracted %zu pixels from darkframe %s\n", badPixels.size(),df->fname.c_str() );
}
}