diff options
author | grog <grog@FreeBSD.org> | 2001-05-22 02:35:19 +0000 |
---|---|---|
committer | grog <grog@FreeBSD.org> | 2001-05-22 02:35:19 +0000 |
commit | 1691b48778d3a733fff8e5e952b780785e5d59c0 (patch) | |
tree | d2097f8bb586928ac540c9ffecca270584bbb36a /sys/dev/vinum | |
parent | 436eef361cf46e88b3652cdbfc56d6bb3a8aec06 (diff) | |
download | FreeBSD-src-1691b48778d3a733fff8e5e952b780785e5d59c0.zip FreeBSD-src-1691b48778d3a733fff8e5e952b780785e5d59c0.tar.gz |
Cosmetics: wrap long lines to be < 80 characters.
Diffstat (limited to 'sys/dev/vinum')
-rw-r--r-- | sys/dev/vinum/vinummemory.c | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/sys/dev/vinum/vinummemory.c b/sys/dev/vinum/vinummemory.c index 58eea67..fb03679 100644 --- a/sys/dev/vinum/vinummemory.c +++ b/sys/dev/vinum/vinummemory.c @@ -33,7 +33,7 @@ * otherwise) arising in any way out of the use of this software, even if * advised of the possibility of such damage. * - * $Id: vinummemory.c,v 1.24 2000/02/24 07:25:51 grog Exp grog $ + * $Id: vinummemory.c,v 1.26 2001/01/04 00:15:49 grog Exp grog $ * $FreeBSD$ */ @@ -151,7 +151,9 @@ MMalloc(int size, char *file, int line) return 0; /* can't continue */ } /* Wait for malloc if we can */ - result = malloc(size, M_DEVBUF, curproc->p_intr_nesting_level == 0 ? M_WAITOK : M_NOWAIT); + result = malloc(size, + M_DEVBUF, + curproc->p_intr_nesting_level == 0 ? M_WAITOK : M_NOWAIT); if (result == NULL) log(LOG_ERR, "vinum: can't allocate %d bytes from %s:%d\n", size, file, line); else { |