Module Name: src
Committed By: joerg
Date: Wed Aug 6 12:34:42 UTC 2014
Modified Files:
src/usr.sbin/sysinst/arch/dummy: md.c
Log Message:
Make it a warning, otherwise the missing noreturn will fail the build.
To generate a diff of this commit:
cvs rdiff -u -r1.1 -r1.2 src/usr.sbin/sysinst/arch/dummy/md.c
Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.
Modified files:
Index: src/usr.sbin/sysinst/arch/dummy/md.c
diff -u src/usr.sbin/sysinst/arch/dummy/md.c:1.1 src/usr.sbin/sysinst/arch/dummy/md.c:1.2
--- src/usr.sbin/sysinst/arch/dummy/md.c:1.1 Sat Jul 26 19:56:30 2014
+++ src/usr.sbin/sysinst/arch/dummy/md.c Wed Aug 6 12:34:42 2014
@@ -1,4 +1,4 @@
-/* $NetBSD: md.c,v 1.1 2014/07/26 19:56:30 dholland Exp $ */
+/* $NetBSD: md.c,v 1.2 2014/08/06 12:34:42 joerg Exp $ */
/*
* Copyright 1997 Piermont Information Systems Inc.
@@ -40,7 +40,7 @@
void
md_init(void)
{
- errx(1, "sysinst has not been properly ported to this platform");
+ warnx("sysinst has not been properly ported to this platform");
}
void