Skip to content

Commit 18af7b1

Browse files
committed
Fix signature mismatch in sqlite3_free
1 parent 57535b4 commit 18af7b1

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Runtime/SQLiteExtensions.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,6 +43,6 @@ public enum DeserializeFlags : uint
4343
public static extern IntPtr Realloc(IntPtr ptr, long size);
4444

4545
[DllImport(LibraryPath, EntryPoint = "sqlite3_free", CallingConvention = CallingConvention.Cdecl)]
46-
public static extern IntPtr Free(IntPtr ptr);
46+
public static extern void Free(IntPtr ptr);
4747
}
4848
}

0 commit comments

Comments
 (0)