Skip to content
GitLab
Menu
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
einsteinathome
boinc
Commits
4036b0cd
Commit
4036b0cd
authored
Oct 10, 2015
by
Rom Walton
Browse files
Merge pull request #1404 from serval2412/master
cppcheck: Fix reports "Prefer prefix ++/-- operators for non-primitiv…
parents
5a799d29
78e0a8a2
Changes
2
Hide whitespace changes
Inline
Side-by-side
client/app.cpp
View file @
4036b0cd
...
...
@@ -310,7 +310,7 @@ void procinfo_show(PROC_MAP& pm) {
PROCINFO
pi
;
pi
.
clear
();
PROC_MAP
::
iterator
i
;
for
(
i
=
pm
.
begin
();
i
!=
pm
.
end
();
i
++
)
{
for
(
i
=
pm
.
begin
();
i
!=
pm
.
end
();
++
i
)
{
PROCINFO
&
p
=
i
->
second
;
msg_printf
(
NULL
,
MSG_INFO
,
"%d %s: boinc? %d low_pri %d (u%f k%f)"
,
...
...
client/result.cpp
View file @
4036b0cd
...
...
@@ -690,7 +690,7 @@ void print_old_results(MIOFILE& mf) {
ores
.
completed_time
,
ores
.
create_time
);
i
++
;
++
i
;
}
mf
.
printf
(
"</old_results>
\n
"
);
}
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment