diff options
author | Steven Moreland <smoreland@google.com> | 2017-07-18 16:53:54 -0700 |
---|---|---|
committer | Steven Moreland <smoreland@google.com> | 2017-07-18 17:03:20 -0700 |
commit | 00fe3ad7287fa62c09d9ab707c71ca9f3f7a8404 (patch) | |
tree | 166d386c339cbe93bb6378e053a25cc9562d1759 /libnativeloader/native_loader.cpp | |
parent | d13547347fb77433887be0cc6cabbcc0e9fcf63f (diff) |
system/core: use proper nativehelper headers
libnativeheader exports headers under nativeheader. These were
available before incorrectly as global headers in order to give
access to jni.h.
Test: modules using system/core find headers
Bug: 63762847
Change-Id: I86240f7857dd815100cab32ad261aa9a0a54329c
Diffstat (limited to 'libnativeloader/native_loader.cpp')
-rw-r--r-- | libnativeloader/native_loader.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libnativeloader/native_loader.cpp b/libnativeloader/native_loader.cpp index 36a2e44bd..7ccd7db95 100644 --- a/libnativeloader/native_loader.cpp +++ b/libnativeloader/native_loader.cpp @@ -15,7 +15,7 @@ */ #include "nativeloader/native_loader.h" -#include "ScopedUtfChars.h" +#include <nativehelper/ScopedUtfChars.h> #include <dlfcn.h> #ifdef __ANDROID__ |