Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(706)

Unified Diff: madvise.cc

Issue 7326013: GCC 4.6 warnings cleanup (Closed) Base URL: http://seccompsandbox.googlecode.com/svn/trunk/
Patch Set: '' Created 9 years, 3 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « library.cc ('k') | mprotect.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: madvise.cc
===================================================================
--- madvise.cc (revision 168)
+++ madvise.cc (working copy)
@@ -38,8 +38,8 @@
case MADV_WILLNEED:
ok:
SecureMem::sendSystemCall(*info, SecureMem::SEND_UNLOCKED,
- madvise_req.start, madvise_req.len,
- madvise_req.advice);
+ const_cast<void*>(madvise_req.start),
+ madvise_req.len, madvise_req.advice);
return true;
default:
// All other flags to madvise() are potential dangerous (as opposed to
« no previous file with comments | « library.cc ('k') | mprotect.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698