Source-Changes-HG archive

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

[src/trunk]: src/dist/ipf Fixed return value (I was unable to compile this on...



details:   https://anonhg.NetBSD.org/src/rev/2bf5b8113074
branches:  trunk
changeset: 521148:2bf5b8113074
user:      martti <martti%NetBSD.org@localhost>
date:      Thu Jan 24 08:30:27 2002 +0000

description:
Fixed return value (I was unable to compile this on sparc64 before
this fix).

diffstat:

 dist/ipf/kmem.c |  4 ++--
 1 files changed, 2 insertions(+), 2 deletions(-)

diffs (18 lines):

diff -r 401b7db230b0 -r 2bf5b8113074 dist/ipf/kmem.c
--- a/dist/ipf/kmem.c   Thu Jan 24 08:25:37 2002 +0000
+++ b/dist/ipf/kmem.c   Thu Jan 24 08:30:27 2002 +0000
@@ -1,4 +1,4 @@
-/*     $NetBSD: kmem.c,v 1.3 2002/01/24 08:21:34 martti Exp $  */
+/*     $NetBSD: kmem.c,v 1.4 2002/01/24 08:30:27 martti Exp $  */
 
 /*
  * Copyright (C) 1993-2002 by Darren Reed.
@@ -53,7 +53,7 @@
                perror("openkmem:open");
                return -1;
            }
-       return (int)kvm_f;
+       return 0;
 }
 
 int    kmemcpy(buf, pos, n)



Home | Main Index | Thread Index | Old Index