summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authortedu <tedu@openbsd.org>2014-07-12 19:14:59 +0000
committertedu <tedu@openbsd.org>2014-07-12 19:14:59 +0000
commit6110b555dbb3e6914264180011fb2ca1ebef4082 (patch)
tree28e8b56e122b4842bc4e148b15dd59ea688e5d81
parentRemove the redundant csum_flag variable and just set the checksum flag (diff)
downloadwireguard-openbsd-6110b555dbb3e6914264180011fb2ca1ebef4082.tar.xz
wireguard-openbsd-6110b555dbb3e6914264180011fb2ca1ebef4082.zip
guenther (who also should have been credited in previous free size commits)
noticed that i missed committing one file.
-rw-r--r--sys/lib/libz/zopenbsd.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/sys/lib/libz/zopenbsd.c b/sys/lib/libz/zopenbsd.c
index b74c4bc6bed..7c6a772daa1 100644
--- a/sys/lib/libz/zopenbsd.c
+++ b/sys/lib/libz/zopenbsd.c
@@ -21,5 +21,5 @@ zcfree(notused, ptr)
void *notused;
void *ptr;
{
- free(ptr, M_DEVBUF);
+ free(ptr, M_DEVBUF, 0);
}