summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSteven Moreland <smoreland@google.com>2017-07-18 16:53:52 -0700
committerSteven Moreland <smoreland@google.com>2017-07-19 15:24:19 +0000
commit740af2fef0d2c91a8f6a07b951f19a709a087ce5 (patch)
tree47be5f093b93e64f8508a7e74d0ffcadf6ce17f5
parent6b9b06d89fd0e01037d3138c71886f2c315ae9ee (diff)
downloadutils-740af2fef0d2c91a8f6a07b951f19a709a087ce5.tar.gz
hardware/intel/common/utils: use proper nativehelper headersandroid-o-iot-preview-5o-iot-preview-5
libnativehelper exports headers under nativehelper. These were available before incorrectly as global headers in order to give access to jni.h. Test: modules using hardware/intel/common/utils find headers Bug: 63762847 Change-Id: I0f7101c7308e5fa3d6eb13a53cdb445bfd61e65d
-rw-r--r--ituxd/jni/onload.cpp2
-rw-r--r--ituxd/jni/thermalJNI.cpp2
2 files changed, 2 insertions, 2 deletions
diff --git a/ituxd/jni/onload.cpp b/ituxd/jni/onload.cpp
index f66a169..7b650d1 100644
--- a/ituxd/jni/onload.cpp
+++ b/ituxd/jni/onload.cpp
@@ -14,7 +14,7 @@
* limitations under the License.
*/
-#include "JNIHelp.h"
+#include <nativehelper/JNIHelp.h>
#include "jni.h"
#include "utils/Log.h"
#include "utils/misc.h"
diff --git a/ituxd/jni/thermalJNI.cpp b/ituxd/jni/thermalJNI.cpp
index 8a64906..27bcef7 100644
--- a/ituxd/jni/thermalJNI.cpp
+++ b/ituxd/jni/thermalJNI.cpp
@@ -16,7 +16,7 @@
#define LOG_TAG "ThermalManagerJNI"
-#include "JNIHelp.h"
+#include <nativehelper/JNIHelp.h>
#include "jni.h"
#include <utils/Log.h>
#include <utils/misc.h>