summaryrefslogtreecommitdiffstats
path: root/minadbd/minadbd_services.cpp
diff options
context:
space:
mode:
authorTao Bao <tbao@google.com>2016-11-16 19:32:35 +0100
committerandroid-build-merger <android-build-merger@google.com>2016-11-16 19:32:35 +0100
commit120076ea51d8da03e78a2e80988ae74653eb0c3a (patch)
tree5843939ddc11042ae3d8519ae2a897e2cbad2087 /minadbd/minadbd_services.cpp
parentresolve merge conflicts of 4f86f26 to stage-aosp-master am: f83101a911 (diff)
parentMerge "Use static_cast to cast pointers returned by malloc/calloc/realloc/mmap." am: 0bedc8e14c (diff)
downloadandroid_bootable_recovery-120076ea51d8da03e78a2e80988ae74653eb0c3a.tar
android_bootable_recovery-120076ea51d8da03e78a2e80988ae74653eb0c3a.tar.gz
android_bootable_recovery-120076ea51d8da03e78a2e80988ae74653eb0c3a.tar.bz2
android_bootable_recovery-120076ea51d8da03e78a2e80988ae74653eb0c3a.tar.lz
android_bootable_recovery-120076ea51d8da03e78a2e80988ae74653eb0c3a.tar.xz
android_bootable_recovery-120076ea51d8da03e78a2e80988ae74653eb0c3a.tar.zst
android_bootable_recovery-120076ea51d8da03e78a2e80988ae74653eb0c3a.zip
Diffstat (limited to 'minadbd/minadbd_services.cpp')
-rw-r--r--minadbd/minadbd_services.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/minadbd/minadbd_services.cpp b/minadbd/minadbd_services.cpp
index 003b51913..426d982eb 100644
--- a/minadbd/minadbd_services.cpp
+++ b/minadbd/minadbd_services.cpp
@@ -66,7 +66,7 @@ static int create_service_thread(void (*func)(int, void *), void *cookie) {
return -1;
}
- stinfo* sti = reinterpret_cast<stinfo*>(malloc(sizeof(stinfo)));
+ stinfo* sti = static_cast<stinfo*>(malloc(sizeof(stinfo)));
if(sti == 0) fatal("cannot allocate stinfo");
sti->func = func;
sti->cookie = cookie;