Fixes build error in README code

master
emersion 2016-06-17 19:29:27 +02:00 committed by GitHub
parent 3f7947a25d
commit 2fcb4b2d24
1 changed files with 1 additions and 1 deletions

View File

@ -313,7 +313,7 @@ func (s *Store) CreateUser(u *User) error {
// Generate ID for the user.
// This returns an error only if the Tx is closed or not writeable.
// That can't happen in an Update() call so I ignore the error check.
id, _ = b.NextSequence()
id, _ := b.NextSequence()
u.ID = int(id)
// Marshal user data into bytes.