aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJason A. Donenfeld <Jason@zx2c4.com>2020-11-03 10:42:14 +0100
committerJason A. Donenfeld <Jason@zx2c4.com>2020-11-03 11:01:20 +0100
commitdfd71bb95457775eaa73810af25b84ebd6106bdf (patch)
treea2f8bfed9c0839418d554467acd641260fd0de4b
parentapi: bulk-disable unreferenced param warning where it nags the most (diff)
downloadwintun-dfd71bb95457775eaa73810af25b84ebd6106bdf.tar.xz
wintun-dfd71bb95457775eaa73810af25b84ebd6106bdf.zip
example: remove extra argument from print
Signed-off-by: Jason A. Donenfeld <Jason@zx2c4.com>
-rw-r--r--example/example.c3
1 files changed, 1 insertions, 2 deletions
diff --git a/example/example.c b/example/example.c
index 0914f3c..a52740f 100644
--- a/example/example.c
+++ b/example/example.c
@@ -320,8 +320,7 @@ main(void)
(Version >> 48) & 0xff,
(Version >> 32) & 0xff,
(Version >> 16) & 0xff,
- (Version >> 0) & 0xff,
- WINTUN_VERSION_MIN);
+ (Version >> 0) & 0xff);
MIB_UNICASTIPADDRESS_ROW AddressRow;
InitializeUnicastIpAddressEntry(&AddressRow);