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

Unified Diff: tests/test_syscalls.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 | « socketcall.cc ('k') | x86_decode.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: tests/test_syscalls.cc
===================================================================
--- tests/test_syscalls.cc (revision 168)
+++ tests/test_syscalls.cc (working copy)
@@ -1259,7 +1259,8 @@
int sock_pair[2];
CHECK_SUCCEEDS(socketpair(AF_UNIX, SOCK_STREAM, 0, sock_pair) == 0);
pthread_t tid;
- int err = pthread_create(&tid, NULL, recvmsg_thread, (void *) sock_pair[0]);
+ int err = pthread_create(&tid, NULL, recvmsg_thread,
+ reinterpret_cast<void*>(sock_pair[0]));
CHECK(err == 0);
// In order to test for the deadlock, we need to wait for the child
« no previous file with comments | « socketcall.cc ('k') | x86_decode.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698