summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMark Salyzyn <salyzyn@google.com>2016-09-28 15:54:45 -0700
committerMark Salyzyn <salyzyn@google.com>2016-09-30 12:47:05 -0700
commit4bbf7e573e8277e6f84e3d9146761a4326da5a97 (patch)
tree60b0246434971611589e8cd6b5853f04c0891783
parent0eb124e66ea661429de7b3286721e9d7aa33a25e (diff)
downloadlibmemtrack-4bbf7e573e8277e6f84e3d9146761a4326da5a97.tar.gz
system/core Replace log/log.h with android/log.h
Should use android/log.h instead of log/log.h as a good example to all others. Adjust header order to comply with Android Coding standards. Test: Compile Bug: 26552300 Bug: 31289077 Change-Id: I33a8fb4e754d2dc4754d335660c450e0a67190fc
-rw-r--r--memtrack.c5
1 files changed, 2 insertions, 3 deletions
diff --git a/memtrack.c b/memtrack.c
index b528214..29cc92c 100644
--- a/memtrack.c
+++ b/memtrack.c
@@ -14,16 +14,15 @@
* limitations under the License.
*/
-#include <memtrack/memtrack.h>
-
#define LOG_TAG "memtrack"
-#include <log/log.h>
+#include <memtrack/memtrack.h>
#include <errno.h>
#include <malloc.h>
#include <string.h>
+#include <android/log.h>
#include <hardware/memtrack.h>
#define ARRAY_SIZE(x) (sizeof(x)/sizeof((x)[0]))