Source-Changes-HG archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

[src/trunk]: src/sys/kern Fix bad botch invented in last change.



details:   https://anonhg.NetBSD.org/src/rev/7449c256fc40
branches:  trunk
changeset: 581538:7449c256fc40
user:      tron <tron%NetBSD.org@localhost>
date:      Thu Jun 02 12:42:10 2005 +0000

description:
Fix bad botch invented in last change.

diffstat:

 sys/kern/uipc_mbuf.c |  2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diffs (12 lines):

diff -r b0f24886a12e -r 7449c256fc40 sys/kern/uipc_mbuf.c
--- a/sys/kern/uipc_mbuf.c      Thu Jun 02 11:42:16 2005 +0000
+++ b/sys/kern/uipc_mbuf.c      Thu Jun 02 12:42:10 2005 +0000
@@ -671,7 +671,7 @@
 m_copydata(const struct mbuf *m, int off, int len, void *vp)
 {
        unsigned        count;
-       caddr_t         *cp = vp;
+       caddr_t         cp = vp;
 
        if (off < 0 || len < 0)
                panic("m_copydata: off %d, len %d", off, len);



Home | Main Index | Thread Index | Old Index