From ebcc5eb04fec60c41c7a6f86cc05eefe49ec5492 Mon Sep 17 00:00:00 2001 From: Charlie Fenton Date: Tue, 4 Aug 2009 05:51:40 +0000 Subject: [PATCH] client: fix compiler warning (too few args for print format) svn path=/trunk/boinc/; revision=18812 --- client/app_start.cpp | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/client/app_start.cpp b/client/app_start.cpp index 5edfe943ee..a29adc9a71 100644 --- a/client/app_start.cpp +++ b/client/app_start.cpp @@ -165,7 +165,8 @@ static void coproc_cmdline( ); } else { msg_printf(atp->result->project, MSG_INFO, - "coproc %d (devnum %d) not in use" + "coproc %d (devnum %d) not in use", + j, coproc->device_nums[j] ); } }