summaryrefslogtreecommitdiffstats
path: root/liblog/logger_name.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'liblog/logger_name.cpp')
-rw-r--r--liblog/logger_name.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/liblog/logger_name.cpp b/liblog/logger_name.cpp
index c6f3cb73b..3aa684132 100644
--- a/liblog/logger_name.cpp
+++ b/liblog/logger_name.cpp
@@ -35,7 +35,7 @@ static const char* LOG_NAME[LOG_ID_MAX] = {
/* clang-format on */
};
-LIBLOG_ABI_PUBLIC const char* android_log_id_to_name(log_id_t log_id) {
+const char* android_log_id_to_name(log_id_t log_id) {
if (log_id >= LOG_ID_MAX) {
log_id = LOG_ID_MAIN;
}
@@ -45,7 +45,7 @@ LIBLOG_ABI_PUBLIC const char* android_log_id_to_name(log_id_t log_id) {
static_assert(std::is_same<std::underlying_type<log_id_t>::type, uint32_t>::value,
"log_id_t must be an unsigned int");
-LIBLOG_ABI_PUBLIC log_id_t android_name_to_log_id(const char* logName) {
+log_id_t android_name_to_log_id(const char* logName) {
const char* b;
unsigned int ret;