mirror of https://github.com/BOINC/boinc.git
client: fix compiler warning (unused variable.)
svn path=/trunk/boinc/; revision=21684
This commit is contained in:
parent
76edcedf9d
commit
fa1c20decb
|
@ -4071,3 +4071,9 @@ Rom 2 Jun 2010
|
||||||
|
|
||||||
clientgui/
|
clientgui/
|
||||||
AdvancedFrame.cpp
|
AdvancedFrame.cpp
|
||||||
|
|
||||||
|
Charlie 2 Jun 2010
|
||||||
|
- client: fix compiler warning (unused variable.)
|
||||||
|
|
||||||
|
client/
|
||||||
|
log_flags.cpp
|
||||||
|
|
|
@ -289,7 +289,7 @@ void CONFIG::clear() {
|
||||||
|
|
||||||
int CONFIG::parse_options(XML_PARSER& xp) {
|
int CONFIG::parse_options(XML_PARSER& xp) {
|
||||||
char tag[1024], path[256];
|
char tag[1024], path[256];
|
||||||
bool is_tag, btemp;
|
bool is_tag;
|
||||||
string s;
|
string s;
|
||||||
int n;
|
int n;
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue