mirror of https://github.com/tidwall/tile38.git
Merge pull request #454 from olevole/master
log: fix typo in Fatalf func
This commit is contained in:
commit
ac3bac7d16
|
@ -145,7 +145,7 @@ func Print(format string, args ...interface{}) {
|
||||||
|
|
||||||
// Fatalf ...
|
// Fatalf ...
|
||||||
func Fatalf(format string, args ...interface{}) {
|
func Fatalf(format string, args ...interface{}) {
|
||||||
log(1, "FATA", "x1b[31m", true, format, args...)
|
log(1, "FATA", "\x1b[31m", true, format, args...)
|
||||||
os.Exit(1)
|
os.Exit(1)
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue