From 801bcecbb5a0971705b9db6dc826f0da9877ec3d Mon Sep 17 00:00:00 2001 From: Mark Salyzyn Date: Wed, 1 Apr 2015 09:10:04 -0700 Subject: [PATCH] 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 --- logd/LogCommand.cpp | 1 + 1 file changed, 1 insertion(+) 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 @@ #include #include #include +#include #include