mirror of https://github.com/BOINC/boinc.git
Fix compiler warning
svn path=/trunk/boinc/; revision=13896
This commit is contained in:
parent
2806eb14b2
commit
23802ae381
|
@ -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
|
||||
|
|
|
@ -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) {
|
||||
|
|
Loading…
Reference in New Issue