summaryrefslogtreecommitdiff
path: root/src/fs_event_wrap.cc
diff options
context:
space:
mode:
Diffstat (limited to 'src/fs_event_wrap.cc')
-rw-r--r--src/fs_event_wrap.cc6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/fs_event_wrap.cc b/src/fs_event_wrap.cc
index 0df58c727f..78b7cf1c1d 100644
--- a/src/fs_event_wrap.cc
+++ b/src/fs_event_wrap.cc
@@ -171,9 +171,9 @@ Handle<Value> FSEventWrap::Close(const Arguments& args) {
// Unwrap manually here. The UNWRAP() macro asserts that wrap != NULL.
// That usually indicates an error but not here: double closes are possible
// and legal, HandleWrap::Close() deals with them the same way.
- assert(!args.Holder().IsEmpty());
- assert(args.Holder()->InternalFieldCount() > 0);
- void* ptr = args.Holder()->GetAlignedPointerFromInternalField(0);
+ assert(!args.This().IsEmpty());
+ assert(args.This()->InternalFieldCount() > 0);
+ void* ptr = args.This()->GetAlignedPointerFromInternalField(0);
FSEventWrap* wrap = static_cast<FSEventWrap*>(ptr);
if (wrap == NULL || wrap->initialized_ == false) {