summaryrefslogtreecommitdiff
path: root/sys/kern/dma_alloc.c
diff options
context:
space:
mode:
authorTheo de Raadt <deraadt@cvs.openbsd.org>2010-07-14 00:15:28 +0000
committerTheo de Raadt <deraadt@cvs.openbsd.org>2010-07-14 00:15:28 +0000
commitdcc11e4e7f833a30a8658f37b9f3115108420e1c (patch)
treee57cff3206d59ae8631b5ab543e5432a08c24259 /sys/kern/dma_alloc.c
parentdeff2c65a5c16ec0c392141c0e191cc2c6b4af2e (diff)
oops; Fred Crowson
Diffstat (limited to 'sys/kern/dma_alloc.c')
-rw-r--r--sys/kern/dma_alloc.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/kern/dma_alloc.c b/sys/kern/dma_alloc.c
index 7c61f906ffd..d24cf1a2a33 100644
--- a/sys/kern/dma_alloc.c
+++ b/sys/kern/dma_alloc.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: dma_alloc.c,v 1.1 2010/07/13 16:47:03 deraadt Exp $ */
+/* $OpenBSD: dma_alloc.c,v 1.2 2010/07/14 00:15:07 deraadt Exp $ */
/*
* Copyright (c) 2010 Theo de Raadt <deraadt@openbsd.org>
*
@@ -49,7 +49,7 @@ dma_alloc_index(size_t sz)
if (sz <= (1 << (b + DMA_BUCKET_OFFSET)))
return (b);
#ifdef DEBUG
- printf("dma_alloc/free: object %d too large\n", sz)
+ printf("dma_alloc/free: object %d too large\n", sz);
#endif
return (-1);
}