aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authormattn <mattn.jp@gmail.com>2019-11-05 14:44:21 +0900
committerGitHub <noreply@github.com>2019-11-05 14:44:21 +0900
commit67c1376b46fb54cb953532f136c9b8accefca46b (patch)
tree6af6931d05cb98cf2ee157e764b1dc845fae72e2
parentMerge pull request #753 from opencollective/opencollective (diff)
parentImprove readability of Backup() (diff)
downloadgolite-67c1376b46fb54cb953532f136c9b8accefca46b.tar.gz
golite-67c1376b46fb54cb953532f136c9b8accefca46b.tar.xz
Merge pull request #754 from codesoap/master
Improve readability of Backup()
-rw-r--r--backup.go6
1 files changed, 3 insertions, 3 deletions
diff --git a/backup.go b/backup.go
index 5ab3a54..9754bfc 100644
--- a/backup.go
+++ b/backup.go
@@ -25,18 +25,18 @@ type SQLiteBackup struct {
}
// Backup make backup from src to dest.
-func (c *SQLiteConn) Backup(dest string, conn *SQLiteConn, src string) (*SQLiteBackup, error) {
+func (destConn *SQLiteConn) Backup(dest string, srcConn *SQLiteConn, src string) (*SQLiteBackup, error) {
destptr := C.CString(dest)
defer C.free(unsafe.Pointer(destptr))
srcptr := C.CString(src)
defer C.free(unsafe.Pointer(srcptr))
- if b := C.sqlite3_backup_init(c.db, destptr, conn.db, srcptr); b != nil {
+ if b := C.sqlite3_backup_init(destConn.db, destptr, srcConn.db, srcptr); b != nil {
bb := &SQLiteBackup{b: b}
runtime.SetFinalizer(bb, (*SQLiteBackup).Finish)
return bb, nil
}
- return nil, c.lastError()
+ return nil, destConn.lastError()
}
// Step to backs up for one step. Calls the underlying `sqlite3_backup_step`