Source-Changes-HG archive

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

[src/trunk]: src/sys/arch/arm32/ofw OF_nextprop(): change 'char *nextprop' ->...



details:   https://anonhg.NetBSD.org/src/rev/ab4fdcf06ab5
branches:  trunk
changeset: 499372:ab4fdcf06ab5
user:      lukem <lukem%NetBSD.org@localhost>
date:      Sat Nov 18 12:15:50 2000 +0000

description:
OF_nextprop(): change 'char *nextprop' -> 'void *nextprop', in line with
pk's change to sys/dev/ofw/openfirm.h rev 1.15.

diffstat:

 sys/arch/arm32/ofw/openfirm.c |  6 +++---
 1 files changed, 3 insertions(+), 3 deletions(-)

diffs (27 lines):

diff -r 2f260ed70904 -r ab4fdcf06ab5 sys/arch/arm32/ofw/openfirm.c
--- a/sys/arch/arm32/ofw/openfirm.c     Sat Nov 18 06:22:18 2000 +0000
+++ b/sys/arch/arm32/ofw/openfirm.c     Sat Nov 18 12:15:50 2000 +0000
@@ -1,4 +1,4 @@
-/*     $NetBSD: openfirm.c,v 1.4 2000/11/14 07:13:02 matt Exp $        */
+/*     $NetBSD: openfirm.c,v 1.5 2000/11/18 12:15:50 lukem Exp $       */
 
 /*
  * Copyright 1997
@@ -176,7 +176,7 @@
 OF_nextprop(handle, prop, nextprop)
        int handle;
        char *prop;
-       char *nextprop;
+       void *nextprop;
 {
        static struct {
                char *name;
@@ -184,7 +184,7 @@
                int nreturns;
                int phandle;
                char *prop;
-               char *nextprop;
+               void *nextprop;
                int flags;
        } args = {
                "nextprop",



Home | Main Index | Thread Index | Old Index