From 9affcf438beb43e912e289d1b9f86692d73b0b0a Mon Sep 17 00:00:00 2001 From: Brian Campbell Date: Thu, 4 May 2023 16:01:31 -0600 Subject: [PATCH] bluetooth/hccontrol: Fix unterminated command list Signed-off-by: Brian Campbell Reviewed by: imp Pull Request: https://github.com/freebsd/freebsd-src/pull/730 --- usr.sbin/bluetooth/hccontrol/le.c | 3 +++ 1 file changed, 3 insertions(+) diff --git a/usr.sbin/bluetooth/hccontrol/le.c b/usr.sbin/bluetooth/hccontrol/le.c index 6f768619e9d..c8ae335fcbe 100644 --- a/usr.sbin/bluetooth/hccontrol/le.c +++ b/usr.sbin/bluetooth/hccontrol/le.c @@ -1365,4 +1365,7 @@ struct hci_command le_commands[] = { "Generate 64 bits of random data", &le_rand }, + { + NULL, + } };