Source-Changes-HG archive

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

[src/trunk]: src/sys/compat/linux/arch/powerpc Modified a cast so that it bui...



details:   https://anonhg.NetBSD.org/src/rev/dbd21ab22f08
branches:  trunk
changeset: 503428:dbd21ab22f08
user:      manu <manu%NetBSD.org@localhost>
date:      Mon Feb 05 19:44:32 2001 +0000

description:
Modified a cast so that it builds again

diffstat:

 sys/compat/linux/arch/powerpc/linux_machdep.c |  4 ++--
 1 files changed, 2 insertions(+), 2 deletions(-)

diffs (18 lines):

diff -r 6ca5342f25c1 -r dbd21ab22f08 sys/compat/linux/arch/powerpc/linux_machdep.c
--- a/sys/compat/linux/arch/powerpc/linux_machdep.c     Mon Feb 05 19:39:45 2001 +0000
+++ b/sys/compat/linux/arch/powerpc/linux_machdep.c     Mon Feb 05 19:44:32 2001 +0000
@@ -1,4 +1,4 @@
-/*     $NetBSD: linux_machdep.c,v 1.4 2001/02/04 22:59:26 christos Exp $ */
+/*     $NetBSD: linux_machdep.c,v 1.5 2001/02/05 19:44:32 manu Exp $ */
 
 /*-
  * Copyright (c) 1995, 2000, 2001 The NetBSD Foundation, Inc.
@@ -304,7 +304,7 @@
         * It seems we need a 16 bytes alignement here (it just works with it,
         * don't ask me why
         */
-       scp = (linux_rt_sigframe *)((unsigned long)scp & ~0xfUL); 
+       scp = (struct linux_rt_sigframe *)((unsigned long)scp & ~0xfUL); 
 
        /*
         * Get the context from user stack



Home | Main Index | Thread Index | Old Index