From f6c6b309ebbc350a1a59f1254ba7c55448183ca3 Mon Sep 17 00:00:00 2001 From: Joel Sherrill Date: Tue, 14 Oct 2025 13:16:01 -0500 Subject: [PATCH] cpukit/libmisc/shell/main_pci.c: Add field in shell_pci_modifier table This file had a table supporting the command line options. Updates #5325. --- cpukit/libmisc/shell/main_pci.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cpukit/libmisc/shell/main_pci.c b/cpukit/libmisc/shell/main_pci.c index dfbdfee17c..173f63b3bc 100644 --- a/cpukit/libmisc/shell/main_pci.c +++ b/cpukit/libmisc/shell/main_pci.c @@ -511,7 +511,7 @@ static struct shell_pci_modifier shell_pci_modifiers[MODIFIER_NUM] = {"pcfg", shell_pci_pcfg, 0}, {"getdev", shell_pci_getdev, 0}, {"infodev", shell_pci_infodev, 0}, - {"--help", shell_pci_usage}, + {"--help", shell_pci_usage, 0}, }; static struct shell_pci_modifier *shell_pci_find_modifier(char *name)