diff mbox series

[v3,1/3] shared/shell: fix missing stdbool in shell.h

Message ID 20210811150752.v3.1.Ie7d876ad0b7defabfa86beb64e83f655f12be7ab@changeid (mailing list archive)
State Accepted
Delegated to: Luiz Von Dentz
Headers show
Series [v3,1/3] shared/shell: fix missing stdbool in shell.h | expand

Commit Message

Yun-hao Chung Aug. 11, 2021, 7:08 a.m. UTC
From: Yun-Hao Chung <howardchung@chromium.org>

bt_shell_menu_exists_t returns bool, but stdbool.h is not included.

Reviewed-by: Miao-chen Chou <mcchou@chromium.org>
---

Changes in v3:
- Rename client/admin_policy.* to client/admin.*

Changes in v2:
- refactor command to |allow| instead of |set-service-allowlist| and
|get-service-allowlist|

 src/shared/shell.h | 1 +
 1 file changed, 1 insertion(+)

Comments

bluez.test.bot@gmail.com Aug. 11, 2021, 7:33 a.m. UTC | #1
This is automated email and please do not reply to this email!

Dear submitter,

Thank you for submitting the patches to the linux bluetooth mailing list.
This is a CI test results with your patch series:
PW Link:https://patchwork.kernel.org/project/bluetooth/list/?series=529629

---Test result---

Test Summary:
CheckPatch                    PASS      0.88 seconds
GitLint                       PASS      0.30 seconds
Prep - Setup ELL              PASS      39.82 seconds
Build - Prep                  PASS      0.10 seconds
Build - Configure             PASS      6.97 seconds
Build - Make                  PASS      172.65 seconds
Make Check                    PASS      9.56 seconds
Make Distcheck                PASS      204.28 seconds
Build w/ext ELL - Configure   PASS      7.09 seconds
Build w/ext ELL - Make        PASS      163.00 seconds

Details
##############################
Test: CheckPatch - PASS
Desc: Run checkpatch.pl script with rule in .checkpatch.conf

##############################
Test: GitLint - PASS
Desc: Run gitlint with rule in .gitlint

##############################
Test: Prep - Setup ELL - PASS
Desc: Clone, build, and install ELL

##############################
Test: Build - Prep - PASS
Desc: Prepare environment for build

##############################
Test: Build - Configure - PASS
Desc: Configure the BlueZ source tree

##############################
Test: Build - Make - PASS
Desc: Build the BlueZ source tree

##############################
Test: Make Check - PASS
Desc: Run 'make check'

##############################
Test: Make Distcheck - PASS
Desc: Run distcheck to check the distribution

##############################
Test: Build w/ext ELL - Configure - PASS
Desc: Configure BlueZ source with '--enable-external-ell' configuration

##############################
Test: Build w/ext ELL - Make - PASS
Desc: Build BlueZ source with '--enable-external-ell' configuration



---
Regards,
Linux Bluetooth
Luiz Augusto von Dentz Aug. 11, 2021, 6:20 p.m. UTC | #2
Hi Howard,

On Wed, Aug 11, 2021 at 12:35 AM <bluez.test.bot@gmail.com> wrote:
>
> This is automated email and please do not reply to this email!
>
> Dear submitter,
>
> Thank you for submitting the patches to the linux bluetooth mailing list.
> This is a CI test results with your patch series:
> PW Link:https://patchwork.kernel.org/project/bluetooth/list/?series=529629
>
> ---Test result---
>
> Test Summary:
> CheckPatch                    PASS      0.88 seconds
> GitLint                       PASS      0.30 seconds
> Prep - Setup ELL              PASS      39.82 seconds
> Build - Prep                  PASS      0.10 seconds
> Build - Configure             PASS      6.97 seconds
> Build - Make                  PASS      172.65 seconds
> Make Check                    PASS      9.56 seconds
> Make Distcheck                PASS      204.28 seconds
> Build w/ext ELL - Configure   PASS      7.09 seconds
> Build w/ext ELL - Make        PASS      163.00 seconds
>
> Details
> ##############################
> Test: CheckPatch - PASS
> Desc: Run checkpatch.pl script with rule in .checkpatch.conf
>
> ##############################
> Test: GitLint - PASS
> Desc: Run gitlint with rule in .gitlint
>
> ##############################
> Test: Prep - Setup ELL - PASS
> Desc: Clone, build, and install ELL
>
> ##############################
> Test: Build - Prep - PASS
> Desc: Prepare environment for build
>
> ##############################
> Test: Build - Configure - PASS
> Desc: Configure the BlueZ source tree
>
> ##############################
> Test: Build - Make - PASS
> Desc: Build the BlueZ source tree
>
> ##############################
> Test: Make Check - PASS
> Desc: Run 'make check'
>
> ##############################
> Test: Make Distcheck - PASS
> Desc: Run distcheck to check the distribution
>
> ##############################
> Test: Build w/ext ELL - Configure - PASS
> Desc: Configure BlueZ source with '--enable-external-ell' configuration
>
> ##############################
> Test: Build w/ext ELL - Make - PASS
> Desc: Build BlueZ source with '--enable-external-ell' configuration
>
>
>
> ---
> Regards,
> Linux Bluetooth

Applied, thanks.
diff mbox series

Patch

diff --git a/src/shared/shell.h b/src/shared/shell.h
index 415194a40736..cc4f822fbf1d 100644
--- a/src/shared/shell.h
+++ b/src/shared/shell.h
@@ -8,6 +8,7 @@ 
  *
  */
 #include <getopt.h>
+#include <stdbool.h>
 
 #define COLOR_OFF	"\001\x1B[0m\002"
 #define COLOR_RED	"\001\x1B[0;91m\002"