Fix compiler warning

svn path=/trunk/boinc/; revision=13896
This commit is contained in:
Charlie Fenton 2007-10-18 08:18:22 +00:00
parent 2806eb14b2
commit 23802ae381
2 changed files with 7 additions and 1 deletions

View File

@ -9625,3 +9625,9 @@ David 17 Oct 2007
scheduler_op.C
clienttray/
tray_win.cpp
Charlie 18 Oct 2007
- Fix compiler warning,
client/
cs_scheduler.C

View File

@ -393,7 +393,7 @@ int CLIENT_STATE::handle_scheduler_reply(
if (retval) return retval;
if (log_flags.sched_ops) {
msg_printf(project, MSG_INFO, "Scheduler request succeeded: got %d new tasks", sr.results.size());
msg_printf(project, MSG_INFO, "Scheduler request succeeded: got %d new tasks", (int)sr.results.size());
}
if (log_flags.sched_op_debug) {
if (sr.scheduler_version) {