From de8c0a51a7ab3ae8d70b58883b0705e62313b2fb Mon Sep 17 00:00:00 2001 From: Ben Noordhuis Date: Sat, 23 Nov 2013 23:05:34 +0100 Subject: [PATCH] v8: unbreak freebsd build Pending review of https://codereview.appspot.com/31500043/ Fixes #6576. --- deps/v8/src/platform-freebsd.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/deps/v8/src/platform-freebsd.cc b/deps/v8/src/platform-freebsd.cc index 103fd6ce05..75d88ec5d3 100644 --- a/deps/v8/src/platform-freebsd.cc +++ b/deps/v8/src/platform-freebsd.cc @@ -182,7 +182,7 @@ void OS::LogSharedLibraryAddresses(Isolate* isolate) { // There may be no filename in this line. Skip to next. if (start_of_path == NULL) continue; buffer[bytes_read] = 0; - LOG(isolate SharedLibraryEvent(start_of_path, start, end)); + LOG(isolate, SharedLibraryEvent(start_of_path, start, end)); } close(fd); }