Skip to content

Commit

Permalink
fix errno
Browse files Browse the repository at this point in the history
  • Loading branch information
ajstarks committed Dec 12, 2015
1 parent fd2151e commit 2d0e28c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion svg.go
Expand Up @@ -68,7 +68,7 @@ func (svg *SVG) print(a ...interface{}) (n int, errno error) {
return fmt.Fprint(svg.Writer, a...)
}

func (svg *SVG) println(a ...interface{}) (n int, error error) {
func (svg *SVG) println(a ...interface{}) (n int, errno error) {
return fmt.Fprintln(svg.Writer, a...)
}

Expand Down

0 comments on commit 2d0e28c

Please sign in to comment.