| Index: src/platform-freebsd.cc
 | 
| diff --git a/src/platform-freebsd.cc b/src/platform-freebsd.cc
 | 
| index 007bc0dbd6820bf4d500435329eb75f775aa6b9d..34ed70960175d247b9c3ff08c6681244b6e0a9d0 100644
 | 
| --- a/src/platform-freebsd.cc
 | 
| +++ b/src/platform-freebsd.cc
 | 
| @@ -89,7 +89,7 @@ void* OS::Allocate(const size_t requested,
 | 
|    void* mbase = mmap(NULL, msize, prot, MAP_PRIVATE | MAP_ANON, -1, 0);
 | 
|  
 | 
|    if (mbase == MAP_FAILED) {
 | 
| -    LOG(ISOLATE, StringEvent("OS::Allocate", "mmap failed"));
 | 
| +    LOG(Isolate::Current(), StringEvent("OS::Allocate", "mmap failed"));
 | 
|      return NULL;
 | 
|    }
 | 
|    *allocated = msize;
 | 
| 
 |