Apply clang-format

This commit is contained in:
Martchus 2023-04-07 19:15:50 +02:00
parent 836b7da8a3
commit bb8d875059
1 changed files with 2 additions and 2 deletions

View File

@ -223,8 +223,8 @@ void Binary::load(std::string_view fileContent, std::string_view fileName, std::
// add prefix to Android and compat libs to avoid confusion with normal GNU/Linux ELFs
// note: Relying on the path is not nice. Have Android libs any special header to be distinguishable?
if (directoryPath.starts_with("opt/android-libs")
|| (directoryPath.starts_with("opt/android-ndk") && (directoryPath.find("/sysroot/") != std::string::npos
|| directoryPath.find("/lib/linux/") != std::string::npos))) {
|| (directoryPath.starts_with("opt/android-ndk")
&& (directoryPath.find("/sysroot/") != std::string::npos || directoryPath.find("/lib/linux/") != std::string::npos))) {
extraPrefix = "android-";
} else if (directoryPath.starts_with("usr/static-compat/lib") && fileName.find(".so") != std::string::npos) {
extraPrefix = "static-compat-";