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

Commit ccaac4ad authored by Bart Van Assche's avatar Bart Van Assche
Browse files

libprocessgroup: Fix a log message



Fix the function name in a log message inside CgroupSetup().

Bug: 213617178
Change-Id: I897c831f5e53093df2664e0e8ceefadf9a89369c
Signed-off-by: default avatarBart Van Assche <bvanassche@google.com>
parent b3e303ca
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -410,7 +410,7 @@ bool CgroupSetup() {
    // Make sure we do this only one time. No need for std::call_once because
    // init is a single-threaded process
    if (access(CGROUPS_RC_PATH, F_OK) == 0) {
        LOG(WARNING) << "Attempt to call SetupCgroups more than once";
        LOG(WARNING) << "Attempt to call CgroupSetup() more than once";
        return true;
    }