Fix go vet error in stats_cpu.go for non-linux/darwin builds

This commit is contained in:
Jordan Armstrong 2019-10-28 22:39:27 -03:00
parent d2cfb87c89
commit 324b3b06d9

View File

@ -13,6 +13,6 @@ func (s *Server) writeInfoCPU(w *bytes.Buffer) {
"used_cpu_user:%.2f\r\n"+ "used_cpu_user:%.2f\r\n"+
"used_cpu_sys_children:%.2f\r\n"+ "used_cpu_sys_children:%.2f\r\n"+
"used_cpu_user_children:%.2f\r\n", "used_cpu_user_children:%.2f\r\n",
0, 0, 0, 0, 0.0, 0.0, 0.0, 0.0,
) )
} }