summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
author Narayan Kamath <narayan@google.com> 2016-08-29 11:43:01 +0000
committer android-build-merger <android-build-merger@google.com> 2016-08-29 11:43:01 +0000
commit2cf3cc82e3f529b4353e552f5f38a22e9374c003 (patch)
tree9ae821eb6bd8bfa2c275f05aa589819b7599358a
parentc94d2ddf2bead9b8ec23ee8a868711f637af8f80 (diff)
parentb334c33d65894f5ca9833fa55c3a1cf75e01c497 (diff)
Fix clang build breakage (-Werror -Wformat).
am: b334c33d65 Change-Id: I36f6e388d8294d5650c2bcc1ab2eaec81e09a263
-rw-r--r--core/jni/fd_utils-inl.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/core/jni/fd_utils-inl.h b/core/jni/fd_utils-inl.h
index bd68625514c7..1f34b0275384 100644
--- a/core/jni/fd_utils-inl.h
+++ b/core/jni/fd_utils-inl.h
@@ -404,7 +404,7 @@ class FileDescriptorTable {
//
// TODO(narayan): This will be an error in a future android release.
// error = true;
- ALOGW("Zygote opened %d new file descriptor(s).", open_fds.size());
+ ALOGW("Zygote opened %zd new file descriptor(s).", open_fds.size());
// TODO(narayan): This code will be removed in a future android release.
std::set<int>::const_iterator it;