From 0663e075ca2cf0af685e639e140235fd01617c2e Mon Sep 17 00:00:00 2001 From: Gregory Nutt Date: Sun, 22 Apr 2018 08:39:18 -0600 Subject: [PATCH] Trivial typo fix --- wireless/bluetooth/bt_ioctl.c | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/wireless/bluetooth/bt_ioctl.c b/wireless/bluetooth/bt_ioctl.c index 06a12431f1..4a0b1afbb2 100644 --- a/wireless/bluetooth/bt_ioctl.c +++ b/wireless/bluetooth/bt_ioctl.c @@ -117,10 +117,10 @@ struct btnet_rdstate_s * REVISIT: A fix might be to (1) allocate instances on each IOCTL command * the starts an operation, keeping the allocated structures in a list. (2) * Return a reference number with each such command that starts an - * operation. That reference number would then be used in each IOCTL - * command that gets the result of the requested operation. (3) The - * allocated instance would be freed when either (1) the result has been - * returned or (2) it has expired without being harvested. This implies + * operation. (3) That reference number would then be used in each IOCTL + * command that gets the result of the requested operation. (4) The + * allocated instance would be freed when either: (a) the result has been + * returned or (b) it has expired without being harvested. This implies * a timer that runs while there are pending operations in order to expire * the unharvested results. */