Reviewers: Erik Corry,

Description:
Small change to fix FreeBSD build

Please review this at http://codereview.chromium.org/2098019/show

Affected files:
  M src/platform-freebsd.cc


Index: src/platform-freebsd.cc
diff --git a/src/platform-freebsd.cc b/src/platform-freebsd.cc
index b1075cf3217d5d5ab3bfba65acb8d92657da7290..72fe088d8ad6baec3cad1e5271358e9fa010a761 100644
--- a/src/platform-freebsd.cc
+++ b/src/platform-freebsd.cc
@@ -290,7 +290,7 @@ int OS::StackWalk(Vector<OS::StackFrame> frames) {

   int frames_count = backtrace(addresses.start(), frames_size);

-  char** symbols = backtrace_symbols(addresses, frames_count);
+  char** symbols = backtrace_symbols(addresses.start(), frames_count);
   if (symbols == NULL) {
     return kStackWalkError;
   }


--
v8-dev mailing list
[email protected]
http://groups.google.com/group/v8-dev

Reply via email to