rlimit_posix.go: Use backticks for shell code (#2235)

This commit is contained in:
Richard Hartmann 2018-07-26 21:55:42 +02:00 committed by Matt Holt
parent fcbb90a9af
commit f56696f478

View file

@ -31,7 +31,7 @@ func checkFdlimit() {
err := syscall.Getrlimit(syscall.RLIMIT_NOFILE, rlimit)
if err == nil && rlimit.Cur < min {
fmt.Printf("WARNING: File descriptor limit %d is too low for production servers. "+
"At least %d is recommended. Fix with \"ulimit -n %d\".\n", rlimit.Cur, min, min)
"At least %d is recommended. Fix with `ulimit -n %d`.\n", rlimit.Cur, min, min)
}
}