diff options
author | 2016-12-22 18:04:15 +0000 | |
---|---|---|
committer | 2016-12-22 18:04:16 +0000 | |
commit | c47aa53c84cc7ac0194057c3afac005437d5ae2b (patch) | |
tree | b7f504bd516acbf3af6200414b79f61d9ba8aa45 | |
parent | ee080ea22908032b9568c95eda912a5f9fca594a (diff) | |
parent | 036320995cc3e687649685ca346ae0c90174ba41 (diff) |
Merge "Update for hiding Status from Return<T> object."
-rw-r--r-- | cmds/atrace/atrace.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/cmds/atrace/atrace.cpp b/cmds/atrace/atrace.cpp index 28fca4da40..d99084b9e6 100644 --- a/cmds/atrace/atrace.cpp +++ b/cmds/atrace/atrace.cpp @@ -537,18 +537,18 @@ static void pokeHalServices() if (!notifyRet.isOk()) { fprintf(stderr, "failed to notifySyspropsChanged on service %s: %s\n", fqInstanceName.c_str(), - notifyRet.getStatus().toString8().string()); + notifyRet.description().c_str()); } }); if (!getRet.isOk()) { fprintf(stderr, "failed to get service %s: %s\n", fqInstanceName.c_str(), - getRet.getStatus().toString8().string()); + getRet.description().c_str()); } } }); if (!listRet.isOk()) { - fprintf(stderr, "failed to list services: %s\n", listRet.getStatus().toString8().string()); + fprintf(stderr, "failed to list services: %s\n", listRet.description().c_str()); } } |