summaryrefslogtreecommitdiff
path: root/sys/kern/dma_alloc.c
diff options
context:
space:
mode:
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);
}