Index: base/debug/stack_trace.cc |
diff --git a/base/debug/stack_trace.cc b/base/debug/stack_trace.cc |
index 1919abcef1fc9930c71c62b0a2529089d98edbb6..776c8839e070fe8b672f3319cd557e4d8b61da2c 100644 |
--- a/base/debug/stack_trace.cc |
+++ b/base/debug/stack_trace.cc |
@@ -18,7 +18,7 @@ StackTrace::StackTrace(const void* const* trace, size_t count) { |
count = std::min(count, arraysize(trace_)); |
if (count) |
memcpy(trace_, trace, count * sizeof(trace_[0])); |
- count_ = static_cast<int>(count); |
+ count_ = count; |
} |
StackTrace::~StackTrace() { |