Fix bad botch invented in last change.

This commit is contained in:
tron 2005-06-02 12:42:10 +00:00
parent 35d02e369c
commit f0abca45e5
1 changed files with 1 additions and 1 deletions

View File

@ -671,7 +671,7 @@ void
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);