Index: src/platform-solaris.cc |
diff --git a/src/platform-solaris.cc b/src/platform-solaris.cc |
index 66f23ae6157f298bff7b41773f49613eab058798..512d995792731cb9e0a1333cd8ec856868f4cc03 100644 |
--- a/src/platform-solaris.cc |
+++ b/src/platform-solaris.cc |
@@ -104,7 +104,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; |