- scheduler: fix message typo

svn path=/trunk/boinc/; revision=25985
This commit is contained in:
David Anderson 2012-08-05 01:40:19 +00:00
parent 89695dd531
commit 13b6aefbd7
2 changed files with 12 additions and 4 deletions

View File

@ -2390,7 +2390,7 @@ Rom 29 Feb 2012
David 1 Mar 2012
- client: fix crashing bug when there is 1 instance of a resources.
I'm not sure how this every worked.
I'm not sure how this ever worked.
client/
work_fetch.h
@ -2827,7 +2827,7 @@ David 19 Mar 2012
sched_resend.cpp
Rom 20 Mar 2012
- VBOX: Make it explicily clear what the result of a start/stop
- VBOX: Make it explicitly clear what the result of a start/stop
request was. Hopefully this will give us insight into whether
the core client is terminating the wrapper or something else is
going on.
@ -5289,3 +5289,9 @@ David 3 Aug 2012
cs_platforms.cpp
lib/
md5_file.cpp
David 3 Aug 2012
- scheduler: fix message typo
sched/
sched_send.cpp

View File

@ -1427,10 +1427,12 @@ void send_gpu_messages() {
strcat(buf, proc_type_name(i));
}
}
g_reply->insert_message(
char msg[1024];
sprintf(msg,
_("An %s GPU is required to run tasks for this project"),
"notice"
buf
);
g_reply->insert_message(msg, "notice");
}
if (g_request->coprocs.nvidia.count && ssp->have_apps_for_proc_type[PROC_TYPE_NVIDIA_GPU]) {