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

Unified Diff: ipc.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 | « no previous file | library.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: ipc.cc
===================================================================
--- ipc.cc (revision 168)
+++ ipc.cc (working copy)
@@ -105,7 +105,8 @@
info->mem->shmId = -1;
SecureMem::sendSystemCall(*info, SecureMem::SEND_UNLOCKED, shmat_req.shmid,
- shmat_req.shmaddr, shmat_req.shmflg);
+ const_cast<void*>(shmat_req.shmaddr),
+ shmat_req.shmflg);
return true;
}
@@ -153,7 +154,8 @@
}
info->mem->shmId = -1;
- SecureMem::sendSystemCall(*info, SecureMem::SEND_UNLOCKED, shmdt_req.shmaddr);
+ SecureMem::sendSystemCall(*info, SecureMem::SEND_UNLOCKED,
+ const_cast<void*>(shmdt_req.shmaddr));
return true;
}
« no previous file with comments | « no previous file | library.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698