From fb3f956d075676c0438f2ee2bf3a5be659dfc04b Mon Sep 17 00:00:00 2001 From: Elliott Hughes Date: Wed, 9 Oct 2013 16:29:42 -0700 Subject: [PATCH] Fix build. 'private' is no longer on the default include path inside bionic. Change-Id: I9bfab213a496fac585787118603af3aa2a1f9951 --- libc/bionic/__read_chk.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libc/bionic/__read_chk.cpp b/libc/bionic/__read_chk.cpp index d7133f1cd..9de99c1a0 100644 --- a/libc/bionic/__read_chk.cpp +++ b/libc/bionic/__read_chk.cpp @@ -28,7 +28,7 @@ #undef _FORTIFY_SOURCE #include -#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)) {