mirror of https://github.com/mattn/go-sqlite3.git
fix build
This commit is contained in:
parent
a8bf79c7d7
commit
2bc6ac72c0
|
@ -85,7 +85,7 @@ func fillExpandedSQL(info *TraceInfo, db *C.sqlite3, pStmt unsafe.Pointer) {
|
||||||
panic("No SQLite statement pointer in P arg of trace_v2 callback")
|
panic("No SQLite statement pointer in P arg of trace_v2 callback")
|
||||||
}
|
}
|
||||||
|
|
||||||
expSQLiteCStr := C.sqlite3_expanded_sql(pStmt)
|
expSQLiteCStr := C.sqlite3_expanded_sql((*C.sqlite3_stmt)(pStmt))
|
||||||
if expSQLiteCStr == nil {
|
if expSQLiteCStr == nil {
|
||||||
fillDBError(&info.DBError, db)
|
fillDBError(&info.DBError, db)
|
||||||
return
|
return
|
||||||
|
|
Loading…
Reference in New Issue