mirror of https://github.com/BOINC/boinc.git
- client: fix bug in coproc summary string.
lib/ coproc.cpp svn path=/trunk/boinc/; revision=19209
This commit is contained in:
parent
a7b32b486e
commit
5a54302bf6
|
@ -8235,3 +8235,9 @@ David 28 Sept 2009
|
|||
|
||||
client/
|
||||
work_fetch.h
|
||||
|
||||
Rom 29 Sept 2009
|
||||
- client: fix bug in coproc summary string.
|
||||
|
||||
lib/
|
||||
coproc.cpp
|
||||
|
|
|
@ -111,7 +111,7 @@ void COPROCS::summary_string(char* buf, int len) {
|
|||
cp2->prop.name, cp2->count, mem, cp2->display_driver_version
|
||||
);
|
||||
strcat(bigbuf, buf2);
|
||||
} else if (!strcmp(cp->type, "CAL")){
|
||||
} else if (!strcmp(cp->type, "ATI")){
|
||||
COPROC_ATI* cp2 =(COPROC_ATI*) cp;
|
||||
sprintf(buf2,"[CAL|%s|%d|%dMB|%s]",
|
||||
cp2->name, cp2->count, cp2->attribs.localRAM, cp2->version
|
||||
|
|
Loading…
Reference in New Issue