summaryrefslogtreecommitdiff
path: root/sys/dev/microcode/tigon
diff options
context:
space:
mode:
authorTed Unangst <tedu@cvs.openbsd.org>2014-07-12 19:01:51 +0000
committerTed Unangst <tedu@cvs.openbsd.org>2014-07-12 19:01:51 +0000
commit6a095d5cb1bc22d35425aac5a4666242140bdb87 (patch)
tree4f69645f8ae09a3a77eeec544a7ca02700a019bf /sys/dev/microcode/tigon
parentd8d41b4a03c62b64b16e2e4fe3dd5f26408b790c (diff)
revert bogus free changes in not kernel files. got a little trigger happy.
Diffstat (limited to 'sys/dev/microcode/tigon')
-rw-r--r--sys/dev/microcode/tigon/build.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/dev/microcode/tigon/build.c b/sys/dev/microcode/tigon/build.c
index 048de9c3674..ef42170f7ac 100644
--- a/sys/dev/microcode/tigon/build.c
+++ b/sys/dev/microcode/tigon/build.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: build.c,v 1.7 2014/07/12 18:48:18 tedu Exp $ */
+/* $OpenBSD: build.c,v 1.8 2014/07/12 19:01:50 tedu Exp $ */
/*
* Copyright (c) 2004 Theo de Raadt <deraadt@openbsd.org>
@@ -95,7 +95,7 @@ output(const char *name,
err(1, "%s", name);
if (rlen != len)
errx(1, "%s: short write", name);
- free(tf, 0);
+ free(tf);
close(fd);
}