civodul pushed a commit to branch master
in repository guix.
commit b85e2ff4841f1b91c104668bbcf93e39d9792827
Author: Ludovic Courtès <[email protected]>
Date: Wed Jun 6 17:06:05 2018 +0200
database: Remove extra SQL parameter in 'update-or-insert'.
* guix/store/database.scm (update-or-insert): Remove extra #:path
parameter.
---
guix/store/database.scm | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/guix/store/database.scm b/guix/store/database.scm
index 1400d0d..b9170dd 100644
--- a/guix/store/database.scm
+++ b/guix/store/database.scm
@@ -127,7 +127,7 @@ of course. Returns the row id of the row that was modified
or inserted."
(if id
(let ((stmt (sqlite-prepare db update-sql #:cache? #t)))
(sqlite-bind-arguments stmt #:id id
- #:path path #:deriver deriver
+ #:deriver deriver
#:hash hash #:size nar-size #:time time)
(sqlite-fold cons '() stmt)
(sqlite-finalize stmt)