diff --git a/src/misc/record_loader.cxx b/src/misc/record_loader.cxx index 667526d5..975655d7 100644 --- a/src/misc/record_loader.cxx +++ b/src/misc/record_loader.cxx @@ -93,8 +93,8 @@ int RecordLoaderInterface::LoadAndRegister() } } ifs.close(); - LOG_INFO( "Read:%s with %zu records in %jd seconds", - filnam.c_str(), nbRec, time(NULL) - cntTim); + LOG_INFO( "Read:%s with %d records in %d seconds", + filnam.c_str(), static_cast(nbRec), static_cast( time(NULL) - cntTim ) ); return nbRec ; }