summaryrefslogtreecommitdiff
path: root/sys/arch
diff options
context:
space:
mode:
authorMiod Vallat <miod@cvs.openbsd.org>2008-06-22 15:18:24 +0000
committerMiod Vallat <miod@cvs.openbsd.org>2008-06-22 15:18:24 +0000
commit5e030ba6f1386b86ea1c56fcc17f2cb730b1a173 (patch)
tree3cc7bbcb53ec6ea09ec44f08705facfd269cbcff /sys/arch
parent370e64b204cff13dd0ee2be7bfea51578a7ecb59 (diff)
One last forgotten FREE().
Diffstat (limited to 'sys/arch')
-rw-r--r--sys/arch/mvme68k/dev/vs.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/arch/mvme68k/dev/vs.c b/sys/arch/mvme68k/dev/vs.c
index 30edbf054f9..6e6e70aa604 100644
--- a/sys/arch/mvme68k/dev/vs.c
+++ b/sys/arch/mvme68k/dev/vs.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: vs.c,v 1.23 2008/05/19 18:42:12 miod Exp $ */
+/* $OpenBSD: vs.c,v 1.24 2008/06/22 15:18:23 miod Exp $ */
/*
* Copyright (c) 1999 Steve Murphree, Jr.
@@ -805,7 +805,7 @@ vs_intr(arg)
m328_cmd->top_sg_list = (M328_SG)0;
}
- FREE(m328_cmd, M_DEVBUF); /* free the command tag */
+ free(m328_cmd, M_DEVBUF); /* free the command tag */
if (vs_checkintr (sc, xs, &status)) {
vs_scsidone(xs, status);
}