From e752ba23b75628697dbcf3c3d932ffa663306f15 Mon Sep 17 00:00:00 2001 From: Will Hawkins Date: Mon, 13 Jun 2022 10:57:06 -0400 Subject: [Bugfix] Compilation error on Windows from missing package In the conditionally compiled code on Windows, there was a missing "fmt" import that broke the build. This patch rectifies that problem. --- extendedstats/other.go | 1 + 1 file changed, 1 insertion(+) (limited to 'extendedstats/other.go') diff --git a/extendedstats/other.go b/extendedstats/other.go index 369c8f6..78c4dc9 100644 --- a/extendedstats/other.go +++ b/extendedstats/other.go @@ -4,6 +4,7 @@ package extendedstats import ( + "fmt" "net" ) -- cgit v1.2.3