diff options
| author | Elliott Hughes <enh@google.com> | 2013-10-09 16:29:42 -0700 |
|---|---|---|
| committer | Elliott Hughes <enh@google.com> | 2013-10-09 16:29:42 -0700 |
| commit | fb3f956d075676c0438f2ee2bf3a5be659dfc04b (patch) | |
| tree | 9854167170b90563f6948b5936dbed1effeed706 | |
| parent | bc545e8a98dd4e1148e8b9c9ca491d1a481ee94d (diff) | |
| download | bionic-fb3f956d075676c0438f2ee2bf3a5be659dfc04b.zip bionic-fb3f956d075676c0438f2ee2bf3a5be659dfc04b.tar.gz bionic-fb3f956d075676c0438f2ee2bf3a5be659dfc04b.tar.bz2 | |
Fix build.
'private' is no longer on the default include path inside bionic.
Change-Id: I9bfab213a496fac585787118603af3aa2a1f9951
| -rw-r--r-- | libc/bionic/__read_chk.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libc/bionic/__read_chk.cpp b/libc/bionic/__read_chk.cpp index d7133f1..9de99c1 100644 --- a/libc/bionic/__read_chk.cpp +++ b/libc/bionic/__read_chk.cpp @@ -28,7 +28,7 @@ #undef _FORTIFY_SOURCE #include <unistd.h> -#include "libc_logging.h" +#include "private/libc_logging.h" extern "C" ssize_t __read_chk(int fd, void* buf, size_t count, size_t buf_size) { if (__predict_false(count > buf_size)) { |
