aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJosh Bleecher Snyder <josh@tailscale.com>2021-01-15 17:25:11 -0800
committerJason A. Donenfeld <Jason@zx2c4.com>2021-01-20 19:57:02 +0100
commitabc88c82b13b6bf4cb1592ba4f7de58079c557cd (patch)
tree12a9a9fa29bcacf8a01553839112d052d67549e8
parentdevice: check returned errors from NewPeer in TestNoiseHandshake (diff)
downloadwireguard-go-abc88c82b13b6bf4cb1592ba4f7de58079c557cd.tar.xz
wireguard-go-abc88c82b13b6bf4cb1592ba4f7de58079c557cd.zip
tun/wintun/memmod: fix format verb
Caught by 'go vet'. Signed-off-by: Josh Bleecher Snyder <josh@tailscale.com>
-rw-r--r--tun/wintun/memmod/memmod_windows.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/tun/wintun/memmod/memmod_windows.go b/tun/wintun/memmod/memmod_windows.go
index b9d7783..e1bb4d5 100644
--- a/tun/wintun/memmod/memmod_windows.go
+++ b/tun/wintun/memmod/memmod_windows.go
@@ -294,7 +294,7 @@ func (module *Module) performBaseRelocation(delta uintptr) (relocated bool, err
}
default:
- return false, fmt.Errorf("Unsupported relocation: %w", relType)
+ return false, fmt.Errorf("Unsupported relocation: %v", relType)
}
}