Skip to content

Commit

Permalink
fix go fmt
Browse files Browse the repository at this point in the history
  • Loading branch information
LIZONGZE committed Dec 11, 2016
1 parent 0baa995 commit eb5c88a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion server/server.go
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ func handleClient(conn net.Conn) {
for {
readbytes, err := conn.Read(receiveBytesContainer) // Read to receiveBytesContainer
if err != nil && err == io.EOF {
log.Println("[INFO]", fn + " Saved")
log.Println("[INFO]", fn+" Saved")
break
} else if err != nil && err != io.EOF {
checkError(err)
Expand Down

0 comments on commit eb5c88a

Please sign in to comment.