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

Commit 5a0c485e authored by Scott Randolph's avatar Scott Randolph
Browse files

Use explicit .c_str() for hidl_string

hidl_string no longer will provide an implicit cast to const char* as it
interfers with other expected behaviors of the class.  It now emulated
std::string in requiring a call to .c_str() to get the same behavior.

Bug:  36532780
Test:  Build the tree
Change-Id: Icfa77d2d505d527f5c9484ea73d2e596ccd810af
parent c428826f
Loading
Loading
Loading
Loading
+1 −1
Original line number Original line Diff line number Diff line
@@ -836,7 +836,7 @@ std::set<int> get_interesting_hal_pids() {
                continue;
                continue;
            }
            }


            if (!should_dump_hal_interface(info.interfaceName)) {
            if (!should_dump_hal_interface(info.interfaceName.c_str())) {
                continue;
                continue;
            }
            }