aboutsummaryrefslogtreecommitdiff
path: root/tracecallback.go
diff options
context:
space:
mode:
Diffstat (limited to 'tracecallback.go')
-rw-r--r--tracecallback.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/tracecallback.go b/tracecallback.go
index 9c42791..27dc72b 100644
--- a/tracecallback.go
+++ b/tracecallback.go
@@ -358,7 +358,7 @@ func (c *SQLiteConn) RegisterAggregator(name string, impl interface{}, pure bool
if pure {
opts |= C.SQLITE_DETERMINISTIC
}
- rv := sqlite3_create_function(c.db, cname, C.int(stepNArgs), C.int(opts), C.uintptr_t(newHandle(c, &ai)), nil, C.stepTrampoline, C.doneTrampoline)
+ rv := sqlite3_create_function(c.db, cname, C.int(stepNArgs), C.int(opts), newHandle(c, &ai), nil, C.stepTrampoline, C.doneTrampoline)
if rv != C.SQLITE_OK {
return c.lastError()
}