aboutsummaryrefslogtreecommitdiff
path: root/stand/powerpc
diff options
context:
space:
mode:
authorWarner Losh <imp@FreeBSD.org>2017-12-11 16:18:05 +0000
committerWarner Losh <imp@FreeBSD.org>2017-12-11 16:18:05 +0000
commitc83457486b042f0d08e8f8add4fc3b64b33b7d7d (patch)
treec61dc2d39480a272fac36c6db317e3f1b3b2409d /stand/powerpc
parent6604afe9c7b3af7355d31bc8a83592351321a69b (diff)
Notes
Diffstat (limited to 'stand/powerpc')
-rw-r--r--stand/powerpc/kboot/main.c2
-rw-r--r--stand/powerpc/ps3/main.c2
2 files changed, 2 insertions, 2 deletions
diff --git a/stand/powerpc/kboot/main.c b/stand/powerpc/kboot/main.c
index 7a24c163d5c4..e72a7482046c 100644
--- a/stand/powerpc/kboot/main.c
+++ b/stand/powerpc/kboot/main.c
@@ -122,7 +122,7 @@ main(int argc, const char **argv)
setenv("loaddev", bootdev, 1);
setenv("LINES", "24", 1);
- interact(NULL); /* doesn't return */
+ interact(); /* doesn't return */
return (0);
}
diff --git a/stand/powerpc/ps3/main.c b/stand/powerpc/ps3/main.c
index be8708aadefa..db9ea50959fa 100644
--- a/stand/powerpc/ps3/main.c
+++ b/stand/powerpc/ps3/main.c
@@ -140,7 +140,7 @@ main(void)
setenv("LINES", "24", 1);
setenv("hw.platform", "ps3", 1);
- interact(NULL); /* doesn't return */
+ interact(); /* doesn't return */
return (0);
}