Index: ipc/ipc_channel_nacl.cc |
diff --git a/ipc/ipc_channel_nacl.cc b/ipc/ipc_channel_nacl.cc |
index 2e5f8b32fcd05bb2f87d0939f4c46c999bb295a1..2c63b81d429890408084a2388e48d4c55862ea0e 100644 |
--- a/ipc/ipc_channel_nacl.cc |
+++ b/ipc/ipc_channel_nacl.cc |
@@ -6,6 +6,7 @@ |
#include <errno.h> |
#include <stddef.h> |
+#include <stdint.h> |
#include <sys/types.h> |
#include <algorithm> |
@@ -358,7 +359,7 @@ bool ChannelNacl::ShouldDispatchInputMessage(Message* msg) { |
} |
bool ChannelNacl::GetNonBrokeredAttachments(Message* msg) { |
- uint16 header_fds = msg->header()->num_fds; |
+ uint16_t header_fds = msg->header()->num_fds; |
CHECK(header_fds == input_fds_.size()); |
if (header_fds == 0) |
return true; // Nothing to do. |