diff options
| author | Pavel Dubrova <pashadubrova@gmail.com> | 2019-09-13 05:36:11 +0300 |
|---|---|---|
| committer | Pavel Dubrova <pashadubrova@gmail.com> | 2019-09-13 05:41:10 +0300 |
| commit | 332d7187e3fccb897c23565cba7dbf17e0a6b407 (patch) | |
| tree | 72c167978127ff4ea8030de28505d75d48d9a1c2 | |
| parent | d413798801a15dc5633b2beb17852d39e608dc0a (diff) | |
macaddrsetup: Replace cutils/log.h with log/log.h
Use log.h from VNDK.
In file included from macaddrsetup.c:12:
system/core/libcutils/include_vndk/cutils/log.h:38:2: warning:
"Deprecated: don't include cutils/log.h, use either android/log.h or log/log.h" [-W#warnings]
Signed-off-by: Pavel Dubrova <pashadubrova@gmail.com>
| -rw-r--r-- | macaddrsetup.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/macaddrsetup.c b/macaddrsetup.c index c13d741..831a9e8 100644 --- a/macaddrsetup.c +++ b/macaddrsetup.c @@ -9,7 +9,7 @@ #include <sys/stat.h> #define LOG_TAG "macaddrsetup" -#include <cutils/log.h> +#include <log/log.h> #define LIB_TA "libta.so" |
