From 5104cb9980b1705911576cb13472527578802ca8 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E5=88=98=E5=BE=B7=E5=8D=8E?= <28560949+NAXG@users.noreply.github.com> Date: Sun, 5 Sep 2021 20:53:08 +0800 Subject: [PATCH] update ParseIP.go --- common/ParseIP.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/common/ParseIP.go b/common/ParseIP.go index 5ae5649..94f5065 100644 --- a/common/ParseIP.go +++ b/common/ParseIP.go @@ -179,7 +179,7 @@ func ParseIPE(ip string) ([]string, error) { func Readipfile(filename string) ([]string, error) { file, err := os.Open(filename) if err != nil { - fmt.Println("Open %s error, %v", filename, err) + fmt.Printf("Open %s error, %v", filename, err) os.Exit(0) } defer file.Close()