diff options
author | Scott Lawrence <bytbox@gmail.com> | 2012-01-20 11:44:24 -0500 |
---|---|---|
committer | Scott Lawrence <bytbox@gmail.com> | 2012-01-20 11:44:24 -0500 |
commit | f0825967469ebc1a342acc4b756b098d81ab511a (patch) | |
tree | 97dc1e8c46560b04b4904ce691b603e647d393fc /sqlite3.go | |
parent | Fixed double free when closing SQLiteStmt (diff) | |
download | golite-f0825967469ebc1a342acc4b756b098d81ab511a.tar.gz golite-f0825967469ebc1a342acc4b756b098d81ab511a.tar.xz |
Fixing build at tip
Diffstat (limited to 'sqlite3.go')
-rw-r--r-- | sqlite3.go | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -20,8 +20,8 @@ _sqlite3_bind_blob(sqlite3_stmt *stmt, int n, void *p, int np) { import "C" import ( "errors" - "exp/sql" - "exp/sql/driver" + "database/sql" + "database/sql/driver" "unsafe" ) |