diff options
author | Yaroslav Tykhiy <ytykhiy@gmail.com> | 2001-03-27 10:21:26 +0000 |
---|---|---|
committer | Yaroslav Tykhiy <ytykhiy@gmail.com> | 2001-03-27 10:21:26 +0000 |
commit | ae5fa19aa95c26a3ea1f076329cd347c5d6c8c68 (patch) | |
tree | b29c8a816bdc04476cf7296a4b53e0d5be37a8f2 | |
parent | 6c7d684cfea69345349f5eb6f075ce8ad936af33 (diff) |
Notes
-rw-r--r-- | sys/kern/subr_clist.c | 2 | ||||
-rw-r--r-- | sys/kern/tty_subr.c | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/sys/kern/subr_clist.c b/sys/kern/subr_clist.c index 3389d367adb1..13ab39a0a193 100644 --- a/sys/kern/subr_clist.c +++ b/sys/kern/subr_clist.c @@ -135,7 +135,7 @@ cblock_alloc_cblocks(number) cbp = malloc(sizeof *cbp, M_TTYS, M_NOWAIT); if (cbp == NULL) { printf( -"clist_alloc_cblocks: M_NOWAIT malloc failed, trying M_WAITOK\n"); +"cblock_alloc_cblocks: M_NOWAIT malloc failed, trying M_WAITOK\n"); cbp = malloc(sizeof *cbp, M_TTYS, M_WAITOK); } /* diff --git a/sys/kern/tty_subr.c b/sys/kern/tty_subr.c index 3389d367adb1..13ab39a0a193 100644 --- a/sys/kern/tty_subr.c +++ b/sys/kern/tty_subr.c @@ -135,7 +135,7 @@ cblock_alloc_cblocks(number) cbp = malloc(sizeof *cbp, M_TTYS, M_NOWAIT); if (cbp == NULL) { printf( -"clist_alloc_cblocks: M_NOWAIT malloc failed, trying M_WAITOK\n"); +"cblock_alloc_cblocks: M_NOWAIT malloc failed, trying M_WAITOK\n"); cbp = malloc(sizeof *cbp, M_TTYS, M_WAITOK); } /* |