Skip to content

Commit

Permalink
merge UIntPtr update into remove-with-CF bug fix
Browse files Browse the repository at this point in the history
  • Loading branch information
warrenfalk committed Nov 18, 2017
1 parent 2451175 commit 8e8a41c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion RocksDbSharp/Native.Wrap.cs
Original file line number Diff line number Diff line change
Expand Up @@ -215,7 +215,7 @@ public void rocksdb_delete_cf(
long keylen,
ColumnFamilyHandle cf)
{
rocksdb_delete_cf(db, writeOptions, cf.Handle, key, keylen, out IntPtr errptr);
rocksdb_delete_cf(db, writeOptions, cf.Handle, key, (UIntPtr)keylen, out IntPtr errptr);
if (errptr != IntPtr.Zero)
throw new RocksDbException(errptr);
}
Expand Down

0 comments on commit 8e8a41c

Please sign in to comment.