Skip to content

Commit 6823f1d

Browse files
committed
Replace u8string method to keep return value consistent
Signed-off-by: Dom Del Nano <[email protected]>
1 parent a4cdf70 commit 6823f1d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/carnot/funcs/os/filesystem.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ inline std::string GetSharedLibraries(md::UPID upid) {
4242
for (const auto& p : std::filesystem::directory_iterator(fpath)) {
4343
if (std::filesystem::is_symlink(p)) {
4444
auto symlink = std::filesystem::read_symlink(p);
45-
libraries.push_back(symlink.u8string());
45+
libraries.push_back(symlink.string());
4646
}
4747
}
4848

0 commit comments

Comments
 (0)