summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMark Salyzyn2015-04-01 11:10:04 -0500
committerMark Salyzyn2015-04-01 13:18:42 -0500
commit801bcecbb5a0971705b9db6dc826f0da9877ec3d (patch)
tree00a1e26247d24a61bc87a72361a37d9a838733fd /logd/LogCommand.cpp
parent27cda9a535c80470e913156e412cbf7e60c3217c (diff)
downloadplatform-system-core-801bcecbb5a0971705b9db6dc826f0da9877ec3d.tar.gz
platform-system-core-801bcecbb5a0971705b9db6dc826f0da9877ec3d.tar.xz
platform-system-core-801bcecbb5a0971705b9db6dc826f0da9877ec3d.zip
logd: missing include for string.h
LogCommand.cpp gets string.h inherited from private/android_filesystem_config.h it should not rely on this in the future. The intent is to move fs_config function into libcutils and thus deprecate any need for string.h in this include file. Bug: 19908228 Change-Id: Iaf3a77298b56efd8004300b17e9a1faafad5b08b
Diffstat (limited to 'logd/LogCommand.cpp')
-rw-r--r--logd/LogCommand.cpp1
1 files changed, 1 insertions, 0 deletions
diff --git a/logd/LogCommand.cpp b/logd/LogCommand.cpp
index e4c138eab..b78c0e0a7 100644
--- a/logd/LogCommand.cpp
+++ b/logd/LogCommand.cpp
@@ -17,6 +17,7 @@
17#include <errno.h> 17#include <errno.h>
18#include <stdio.h> 18#include <stdio.h>
19#include <stdlib.h> 19#include <stdlib.h>
20#include <string.h>
20 21
21#include <private/android_filesystem_config.h> 22#include <private/android_filesystem_config.h>
22 23