From ded013cc4b82918d2f10ef31fa44dcbfd771b711 Mon Sep 17 00:00:00 2001 From: Bruce Allen Date: Sun, 9 Jan 2005 08:04:38 +0000 Subject: [PATCH] print format string didn't agree with arguments svn path=/trunk/boinc/; revision=5039 --- sched/sched_locality.C | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/sched/sched_locality.C b/sched/sched_locality.C index 81e0274ecd..9d048b153d 100644 --- a/sched/sched_locality.C +++ b/sched/sched_locality.C @@ -164,12 +164,12 @@ void make_more_work_for_file(char* filename) { if (retval) { log_messages.printf( SCHED_MSG_LOG::DEBUG, - "project didn't make NEW work for file %s in time\n", fullpath, filename + "project didn't make NEW work for file %s in time\n", filename ); } else { log_messages.printf( SCHED_MSG_LOG::DEBUG, - "success making/finding NEW work for file %s\n", fullpath, filename + "success making/finding NEW work for file %s\n", filename ); } } else {