aboutsummaryrefslogtreecommitdiff
path: root/lib/libdisk
diff options
context:
space:
mode:
authorJordan K. Hubbard <jkh@FreeBSD.org>1995-05-07 01:28:16 +0000
committerJordan K. Hubbard <jkh@FreeBSD.org>1995-05-07 01:28:16 +0000
commit5ff77a99855321785584eba586b6a1afed1c2db1 (patch)
tree129e7b332b5223c21531f842e4c6ba0ef83284a1 /lib/libdisk
parent3906ebee1242b770f935e7694662be265e04d72b (diff)
downloadsrc-5ff77a99855321785584eba586b6a1afed1c2db1.tar.gz
src-5ff77a99855321785584eba586b6a1afed1c2db1.zip
Whoops! An extra paren somehow got in there. Fixed.
Notes
Notes: svn path=/head/; revision=8312
Diffstat (limited to 'lib/libdisk')
-rw-r--r--lib/libdisk/chunk.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/libdisk/chunk.c b/lib/libdisk/chunk.c
index 926c0386c34a..77bcc00b3390 100644
--- a/lib/libdisk/chunk.c
+++ b/lib/libdisk/chunk.c
@@ -6,7 +6,7 @@
* this stuff is worth it, you can buy me a beer in return. Poul-Henning Kamp
* ----------------------------------------------------------------------------
*
- * $Id: chunk.c,v 1.8 1995/05/06 03:28:27 phk Exp $
+ * $Id: chunk.c,v 1.9 1995/05/07 01:25:22 jkh Exp $
*
*/
@@ -18,7 +18,7 @@
#include <err.h>
#include "libdisk.h"
-#define new_chunk() memset(malloc(sizeof(struct chunk), 0, sizeof(struct chunk)))
+#define new_chunk() memset(malloc(sizeof(struct chunk)), 0, sizeof(struct chunk))
/* Is c2 completely inside c1 ? */