Skip to content

Commit e161d08

Browse files
committed
Go fmt file
1 parent 42e66a2 commit e161d08

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

filestore.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -222,7 +222,7 @@ func (store *fileStore) populateCache() (creationTimePopulated bool, err error)
222222
}
223223

224224
if targetSeqNumBytes, err := ioutil.ReadFile(store.targetSeqNumsFname); err == nil {
225-
if targetSeqNum, err := strconv.Atoi(strings.Trim(string(targetSeqNumBytes),"\r\n")); err == nil {
225+
if targetSeqNum, err := strconv.Atoi(strings.Trim(string(targetSeqNumBytes), "\r\n")); err == nil {
226226
if err = store.cache.SetNextTargetMsgSeqNum(targetSeqNum); err != nil {
227227
return creationTimePopulated, errors.Wrap(err, "cache set next target")
228228
}

0 commit comments

Comments
 (0)