diff options
| author | Will Hawkins <[email protected]> | 2022-06-13 10:57:06 -0400 |
|---|---|---|
| committer | Will Hawkins <[email protected]> | 2022-06-15 13:08:52 -0400 |
| commit | e752ba23b75628697dbcf3c3d932ffa663306f15 (patch) | |
| tree | 9a406bf82dbc681a02dc314a72da64d786f85f4d | |
| parent | 144a5dad1f30d538cefd1ed0904c00fc29c3d9c4 (diff) | |
[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.
| -rw-r--r-- | extendedstats/other.go | 1 |
1 files changed, 1 insertions, 0 deletions
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" ) |
