Source-Changes-HG archive

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

[src/trunk]: src/distrib/utils/sysinst/arch/alpha Make this compile again (a ...



details:   https://anonhg.NetBSD.org/src/rev/0899322d4ed1
branches:  trunk
changeset: 471920:0899322d4ed1
user:      nathanw <nathanw%NetBSD.org@localhost>
date:      Thu Apr 15 05:01:04 1999 +0000

description:
Make this compile again (a return -> return foo was missed when
md_copy_filesystem was made to return an int in 1.10).

diffstat:

 distrib/utils/sysinst/arch/alpha/md.c |  4 ++--
 1 files changed, 2 insertions(+), 2 deletions(-)

diffs (18 lines):

diff -r 79959e5bcd41 -r 0899322d4ed1 distrib/utils/sysinst/arch/alpha/md.c
--- a/distrib/utils/sysinst/arch/alpha/md.c     Thu Apr 15 02:28:36 1999 +0000
+++ b/distrib/utils/sysinst/arch/alpha/md.c     Thu Apr 15 05:01:04 1999 +0000
@@ -1,4 +1,4 @@
-/*     $NetBSD: md.c,v 1.12 1999/04/11 22:40:22 bouyer Exp $   */
+/*     $NetBSD: md.c,v 1.13 1999/04/15 05:01:04 nathanw Exp $  */
 
 /*
  * Copyright 1997 Piermont Information Systems Inc.
@@ -146,7 +146,7 @@
 int    md_copy_filesystem (void)
 {
        if (target_already_root()) {
-               return;
+               return 0;
        }
 
        /* Copy the instbin(s) to the disk */



Home | Main Index | Thread Index | Old Index