Source-Changes-HG archive

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

[src/trunk]: src/sys/arch/macppc/dev Fix typo



details:   https://anonhg.NetBSD.org/src/rev/31e05662df47
branches:  trunk
changeset: 348061:31e05662df47
user:      ozaki-r <ozaki-r%NetBSD.org@localhost>
date:      Mon Oct 03 01:23:55 2016 +0000

description:
Fix typo

diffstat:

 sys/arch/macppc/dev/if_bm.c |  6 +++---
 1 files changed, 3 insertions(+), 3 deletions(-)

diffs (27 lines):

diff -r 99f9d8fa119a -r 31e05662df47 sys/arch/macppc/dev/if_bm.c
--- a/sys/arch/macppc/dev/if_bm.c       Mon Oct 03 01:04:36 2016 +0000
+++ b/sys/arch/macppc/dev/if_bm.c       Mon Oct 03 01:23:55 2016 +0000
@@ -1,4 +1,4 @@
-/*     $NetBSD: if_bm.c,v 1.50 2016/10/02 14:25:26 christos Exp $      */
+/*     $NetBSD: if_bm.c,v 1.51 2016/10/03 01:23:55 ozaki-r Exp $       */
 
 /*-
  * Copyright (C) 1998, 1999, 2000 Tsubai Masanari.  All rights reserved.
@@ -27,7 +27,7 @@
  */
 
 #include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: if_bm.c,v 1.50 2016/10/02 14:25:26 christos Exp $");
+__KERNEL_RCSID(0, "$NetBSD: if_bm.c,v 1.51 2016/10/03 01:23:55 ozaki-r Exp $");
 
 #include "opt_inet.h"
 
@@ -621,7 +621,7 @@
        for (; m; m = n) {
                len = m->m_len;
                if (len == 0) {
-                       n = m_feee(m);
+                       n = m_free(m);
                        continue;
                }
                memcpy(buff, mtod(m, void *), len);



Home | Main Index | Thread Index | Old Index