From 065ed551e332a0bbd95daf439d4bf636c86ad00f Mon Sep 17 00:00:00 2001 From: Mattijs Korpershoek Date: Mon, 3 Jun 2024 11:04:58 +0200 Subject: cmd: bcb: Fix bcb compilation when CONFIG_CMD_BCB=n commit dfeb4f0d7935 ("cmd: bcb: extend BCB C API to allow read/write the fields") introduced the bcb_get() function. When CONFIG_CMD_BCB=n, that function is stubbed. The stubbed function has a wrong prototype: value_size arg is missing. Add the missing argument to fix build when CONFIG_CMD_BCB=n. Fixes: dfeb4f0d7935 ("cmd: bcb: extend BCB C API to allow read/write the fields") Signed-off-by: Mattijs Korpershoek Reviewed-by: Guillaume La Roque Reviewed-by: Dmitrii Merkurev Reviewed-by: Julien Masson --- include/bcb.h | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'include/bcb.h') diff --git a/include/bcb.h b/include/bcb.h index 1941d8c28b4..a56b547595a 100644 --- a/include/bcb.h +++ b/include/bcb.h @@ -58,7 +58,8 @@ static inline int bcb_set(enum bcb_field field, const char *value) return -EOPNOTSUPP; } -static inline int bcb_get(enum bcb_field field, char *value_out) +static inline int bcb_get(enum bcb_field field, + char *value_out, size_t value_size) { return -EOPNOTSUPP; } -- cgit v1.2.3