Merge "Update return values in main" am: 242d5fb816 am: 0aa453a22f
Original change: https://android-review.googlesource.com/c/platform/system/core/+/2566710 Change-Id: I1583b08f4c6b8cca90ebe5835d20a770017be3ca Signed-off-by: Automerger Merge Worker <android-build-automerger-merge-worker@system.gserviceaccount.com>
This commit is contained in:
commit
71ed0dee4b
1 changed files with 2 additions and 2 deletions
|
|
@ -38,7 +38,7 @@ int main(int argc, char* argv[]) {
|
|||
android::String16("android.service.gatekeeper.IGateKeeperService"), proxy);
|
||||
if (ret != android::OK) {
|
||||
ALOGE("Couldn't register binder service!");
|
||||
return -1;
|
||||
return 1;
|
||||
}
|
||||
|
||||
/*
|
||||
|
|
@ -46,5 +46,5 @@ int main(int argc, char* argv[]) {
|
|||
* Binder transaction as a single-threaded program.
|
||||
*/
|
||||
android::IPCThreadState::self()->joinThreadPool();
|
||||
return 0;
|
||||
return 1;
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue