diff options
author | Mark Salyzyn | 2017-01-10 15:19:54 -0600 |
---|---|---|
committer | Mark Salyzyn | 2017-01-11 11:31:15 -0600 |
commit | 30f991f251940be3ed11566fb71139852286f68a (patch) | |
tree | 5cef5c112aa400da1ad1572d26fcc3b6b3099b6e /libdiskconfig | |
parent | cdd7ec12be3dfb6a7fa2f597d2220445c96725cf (diff) | |
download | platform-system-core-30f991f251940be3ed11566fb71139852286f68a.tar.gz platform-system-core-30f991f251940be3ed11566fb71139852286f68a.tar.xz platform-system-core-30f991f251940be3ed11566fb71139852286f68a.zip |
liblog: use log/log.h when utilizing ALOG macros
Test: compile
Bug: 30465923
Change-Id: Id6d76510819ebd88c3f5003d00d73a0dbe85e943
Diffstat (limited to 'libdiskconfig')
-rw-r--r-- | libdiskconfig/config_mbr.c | 2 | ||||
-rw-r--r-- | libdiskconfig/diskconfig.c | 2 | ||||
-rw-r--r-- | libdiskconfig/diskutils.c | 2 | ||||
-rw-r--r-- | libdiskconfig/dump_diskconfig.c | 2 | ||||
-rw-r--r-- | libdiskconfig/write_lst.c | 2 |
5 files changed, 5 insertions, 5 deletions
diff --git a/libdiskconfig/config_mbr.c b/libdiskconfig/config_mbr.c index 1d3cd200a..ace9bbfb1 100644 --- a/libdiskconfig/config_mbr.c +++ b/libdiskconfig/config_mbr.c | |||
@@ -22,8 +22,8 @@ | |||
22 | #include <stdlib.h> | 22 | #include <stdlib.h> |
23 | #include <string.h> | 23 | #include <string.h> |
24 | 24 | ||
25 | #include <android/log.h> | ||
26 | #include <diskconfig/diskconfig.h> | 25 | #include <diskconfig/diskconfig.h> |
26 | #include <log/log.h> | ||
27 | 27 | ||
28 | /* start and len are in LBA units */ | 28 | /* start and len are in LBA units */ |
29 | static void | 29 | static void |
diff --git a/libdiskconfig/diskconfig.c b/libdiskconfig/diskconfig.c index 2d59ad996..c7e1b4374 100644 --- a/libdiskconfig/diskconfig.c +++ b/libdiskconfig/diskconfig.c | |||
@@ -28,8 +28,8 @@ | |||
28 | #include <sys/stat.h> | 28 | #include <sys/stat.h> |
29 | #include <unistd.h> | 29 | #include <unistd.h> |
30 | 30 | ||
31 | #include <android/log.h> | ||
32 | #include <cutils/config_utils.h> | 31 | #include <cutils/config_utils.h> |
32 | #include <log/log.h> | ||
33 | 33 | ||
34 | #include <diskconfig/diskconfig.h> | 34 | #include <diskconfig/diskconfig.h> |
35 | 35 | ||
diff --git a/libdiskconfig/diskutils.c b/libdiskconfig/diskutils.c index 3a2760155..fe1b4c180 100644 --- a/libdiskconfig/diskutils.c +++ b/libdiskconfig/diskutils.c | |||
@@ -26,7 +26,7 @@ | |||
26 | #include <sys/stat.h> | 26 | #include <sys/stat.h> |
27 | #include <unistd.h> | 27 | #include <unistd.h> |
28 | 28 | ||
29 | #include <android/log.h> | 29 | #include <log/log.h> |
30 | 30 | ||
31 | #include <diskconfig/diskconfig.h> | 31 | #include <diskconfig/diskconfig.h> |
32 | 32 | ||
diff --git a/libdiskconfig/dump_diskconfig.c b/libdiskconfig/dump_diskconfig.c index c94e7f49e..3c4f62005 100644 --- a/libdiskconfig/dump_diskconfig.c +++ b/libdiskconfig/dump_diskconfig.c | |||
@@ -19,7 +19,7 @@ | |||
19 | 19 | ||
20 | #include <stdio.h> | 20 | #include <stdio.h> |
21 | 21 | ||
22 | #include <android/log.h> | 22 | #include <log/log.h> |
23 | 23 | ||
24 | #include "diskconfig.h" | 24 | #include "diskconfig.h" |
25 | 25 | ||
diff --git a/libdiskconfig/write_lst.c b/libdiskconfig/write_lst.c index 21d4a3108..c3d5c0ac1 100644 --- a/libdiskconfig/write_lst.c +++ b/libdiskconfig/write_lst.c | |||
@@ -23,8 +23,8 @@ | |||
23 | #include <sys/types.h> | 23 | #include <sys/types.h> |
24 | #include <unistd.h> | 24 | #include <unistd.h> |
25 | 25 | ||
26 | #include <android/log.h> | ||
27 | #include <diskconfig/diskconfig.h> | 26 | #include <diskconfig/diskconfig.h> |
27 | #include <log/log.h> | ||
28 | 28 | ||
29 | struct write_list * | 29 | struct write_list * |
30 | alloc_wl(uint32_t data_len) | 30 | alloc_wl(uint32_t data_len) |