diff options
author | Steven Moreland <smoreland@google.com> | 2021-12-14 01:45:47 +0000 |
---|---|---|
committer | Steven Moreland <smoreland@google.com> | 2021-12-14 01:45:47 +0000 |
commit | ffb03995e6a767016671d149762373c217331a32 (patch) | |
tree | 84bbe9e64d0ba45d9316bd7c8d7e026a6cf86b44 /dumpstate | |
parent | 391a7723003d1bfd3f52aa9e663abf1a23adf4a6 (diff) |
CHECK -> CHECK_EQ copy pasta
Hey did I start this? We can take a little bit better errors. :)
Bug: N/A
Test: N/A
Change-Id: I0e96f7f49dae9968904333da9b8269694058c11c
Diffstat (limited to 'dumpstate')
-rw-r--r-- | dumpstate/aidl/default/main.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/dumpstate/aidl/default/main.cpp b/dumpstate/aidl/default/main.cpp index 245175291c..5bc85b4474 100644 --- a/dumpstate/aidl/default/main.cpp +++ b/dumpstate/aidl/default/main.cpp @@ -29,7 +29,7 @@ int main() { const std::string instance = std::string() + Dumpstate::descriptor + "/default"; binder_status_t status = AServiceManager_registerLazyService(dumpstate->asBinder().get(), instance.c_str()); - CHECK(status == STATUS_OK); + CHECK_EQ(status, STATUS_OK); ABinderProcess_joinThreadPool(); return EXIT_FAILURE; // Unreachable |