Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit c3fed342 authored by Yifan Hong's avatar Yifan Hong Committed by android-build-merger
Browse files

Merge "Update for hiding Status from Return<T> object." am: c47aa53c am:...

Merge "Update for hiding Status from Return<T> object." am: c47aa53c am: e6d3ac98 am: 672886df
am: 20bfa17b

Change-Id: I175ec943aabab67731ffc063c7eb9fd3a48a200d
parents bd90cda4 20bfa17b
Loading
Loading
Loading
Loading
+3 −3
Original line number Diff line number Diff line
@@ -548,18 +548,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());
    }
}