diff options
author | Ben Johnson <benbjohnson@yahoo.com> | 2016-07-07 10:56:26 -0600 |
---|---|---|
committer | GitHub <noreply@github.com> | 2016-07-07 10:56:26 -0600 |
commit | c735b38f4e23bc5759d828d8acd5bc6138738715 (patch) | |
tree | 12da16680e915c861bc745074a19cbc7b5601cc5 | |
parent | Merge pull request #569 from ifraixedes/patch-1 (diff) | |
parent | Fixes build error in README code (diff) | |
download | dedo-c735b38f4e23bc5759d828d8acd5bc6138738715.tar.gz dedo-c735b38f4e23bc5759d828d8acd5bc6138738715.tar.xz |
Merge pull request #570 from emersion/patch-1
Fixes build error in README code
-rw-r--r-- | README.md | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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. |