瀏覽代碼

fix printf

Darien Raymond 9 年之前
父節點
當前提交
85da0dae28
共有 1 個文件被更改,包括 1 次插入1 次删除
  1. 1 1
      testing/scenarios/server_env_regular.go

+ 1 - 1
testing/scenarios/server_env_regular.go

@@ -14,7 +14,7 @@ func BuildV2Ray() error {
 		return nil
 	}
 
-	fmt.Printf("Building V2Ray into path (%d)\n", testBinaryPath)
+	fmt.Printf("Building V2Ray into path (%s)\n", testBinaryPath)
 	cmd := exec.Command("go", "build", "-tags=json", "-o="+testBinaryPath, GetSourcePath())
 	return cmd.Run()
 }