From a3877b43ee3bfadaf93c55e95ff4d9a5a4d0b891 Mon Sep 17 00:00:00 2001 From: Marcel Holtmann Date: Mon, 27 Feb 2012 09:19:14 -0800 Subject: [PATCH] hciemu: Fix wrong error code in host control --- test/hciemu.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/hciemu.c b/test/hciemu.c index ffe04f806..260e29ae9 100644 --- a/test/hciemu.c +++ b/test/hciemu.c @@ -783,7 +783,7 @@ static void hci_host_control(uint16_t ocf, int plen, uint8_t *data) break; default: - command_status(ogf, ocf, status); + command_status(ogf, ocf, 0x01); break; } } -- 2.47.3