Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(91)

Unified Diff: src/platform-macos.cc

Issue 1944003: Fix Mac OS build. (Closed)
Patch Set: Created 10 years, 8 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: src/platform-macos.cc
diff --git a/src/platform-macos.cc b/src/platform-macos.cc
index 14207b0a6ac565fac769cf3f331cb9de80a561ff..23747c35f5335b068a291e32c3a0528e76403936 100644
--- a/src/platform-macos.cc
+++ b/src/platform-macos.cc
@@ -285,7 +285,7 @@ int OS::StackWalk(Vector<StackFrame> frames) {
int frames_size = frames.length();
ScopedVector<void*> addresses(frames_size);
- int frames_count = backtrace(addresses.start(), frames_size.start());
+ int frames_count = backtrace(addresses.start(), frames_size);
char** symbols = backtrace_symbols(addresses.start(), frames_count);
if (symbols == NULL) {
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698