commit | 398f64b5805246765b699839b439e18c0dfbf2ee | [log] [tgz] |
---|---|---|
author | Elliott Hughes <enh@google.com> | Mon Mar 26 18:05:48 2012 -0700 |
committer | Elliott Hughes <enh@google.com> | Mon Mar 26 18:05:48 2012 -0700 |
tree | de3f86de82289b1734b12cdc7c4292f4aff16f55 | |
parent | ee0fa76b2e5d39ad36d1ff144b2d0270df81e606 [diff] [blame] |
Remove more lint, mostly C-style casts. Change-Id: Iaf1f23290e35ed48e5795fb20690953a9a834457
diff --git a/src/thread.cc b/src/thread.cc index 74165da..1b5dea0 100644 --- a/src/thread.cc +++ b/src/thread.cc
@@ -513,7 +513,7 @@ // Sanity check. int stack_variable; - CHECK_GT(&stack_variable, (void*) stack_end_); + CHECK_GT(&stack_variable, reinterpret_cast<void*>(stack_end_)); CHECK_PTHREAD_CALL(pthread_attr_destroy, (&attributes), __FUNCTION__); #endif