Skip to content
This repository has been archived by the owner on May 22, 2023. It is now read-only.

Commit

Permalink
quick fix in storage/writer.go
Browse files Browse the repository at this point in the history
  • Loading branch information
heidihoward committed Mar 22, 2017
1 parent 7800a3b commit 3c47b4e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion storage/writer.go
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ func (w fileWriter) write(b []byte) {
if n != len(b) {
glog.Fatal("Short write")
}
n, err = w.wt.Write([]byte("\n"))
_, err = w.wt.Write([]byte("\n"))
if err != nil {
glog.Fatal(err)
}
Expand Down

0 comments on commit 3c47b4e

Please sign in to comment.