Skip to content
This repository has been archived by the owner on Feb 26, 2024. It is now read-only.

Commit

Permalink
fix compile error in README
Browse files Browse the repository at this point in the history
  • Loading branch information
keisku committed Oct 9, 2021
1 parent 3fbcf88 commit a44cf49
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -48,10 +48,10 @@ if err != nil {
return err
}

if err := e.Compress(uint32(time.Now().Unix()), 10.0); err != nil {
if err := c.Compress(uint32(time.Now().Unix()), 10.0); err != nil {
return err
}
if err := e.Compress(uint32(time.Now().Unix()), 10.5); err != nil {
if err := c.Compress(uint32(time.Now().Unix()), 10.5); err != nil {
return err
}

Expand Down

0 comments on commit a44cf49

Please sign in to comment.