From 9f2b358b653940d8414b76d526e724d3a76362f5 Mon Sep 17 00:00:00 2001 From: David Freese Date: Mon, 6 Oct 2014 14:23:15 -0500 Subject: [PATCH] Record loader * fix format issue --- src/misc/record_loader.cxx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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 ; }