Source-Changes-HG archive

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

[src/trunk]: src/sys/stand/efiboot Add missing member for terminating sentinel.



details:   https://anonhg.NetBSD.org/src/rev/6f69d497ae4b
branches:  trunk
changeset: 376359:6f69d497ae4b
user:      rin <rin%NetBSD.org@localhost>
date:      Wed Jun 14 00:42:21 2023 +0000

description:
Add missing member for terminating sentinel.

diffstat:

 sys/stand/efiboot/boot.c |  4 ++--
 1 files changed, 2 insertions(+), 2 deletions(-)

diffs (18 lines):

diff -r 1d0ba023a09d -r 6f69d497ae4b sys/stand/efiboot/boot.c
--- a/sys/stand/efiboot/boot.c  Wed Jun 14 00:35:18 2023 +0000
+++ b/sys/stand/efiboot/boot.c  Wed Jun 14 00:42:21 2023 +0000
@@ -1,4 +1,4 @@
-/*     $NetBSD: boot.c,v 1.44 2022/08/14 11:26:41 jmcneill Exp $       */
+/*     $NetBSD: boot.c,v 1.45 2023/06/14 00:42:21 rin Exp $    */
 
 /*-
  * Copyright (c) 2016 Kimihiro Nonaka <nonaka%netbsd.org@localhost>
@@ -148,7 +148,7 @@ const struct boot_command commands[] = {
        { "help",       command_help,           "help|?" },
        { "?",          command_help,           NULL },
        { "quit",       command_quit,           "quit" },
-       { NULL,         NULL },
+       { NULL,         NULL,                   NULL },
 };
 
 static int



Home | Main Index | Thread Index | Old Index