Skip to content

Commit

Permalink
one more pointer dereference (thanks mikekidder)
Browse files Browse the repository at this point in the history
  • Loading branch information
tilgovi committed May 24, 2011
1 parent d212a98 commit 896fd7c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/LevelDB.cc
Original file line number Diff line number Diff line change
Expand Up @@ -144,7 +144,7 @@ class LevelDB : ObjectWrap {
}

LevelDB* self = ObjectWrap::Unwrap<LevelDB>(args.This());
leveldb::WriteOptions options = JsToWriteOptions(*args[0]);
leveldb::WriteOptions options = JsToWriteOptions(args[0]);
leveldb::Slice key = JsToSlice(args[1]);

return processStatus(self->db->Delete(options, key));
Expand Down

0 comments on commit 896fd7c

Please sign in to comment.