Bluetooth: Settings: Fix broken CONFIG_BT_SETTINGS_USE_PRINTK check
The CONFIG_* prefix was missing, making the #ifdef always false. Found with a script (CONFIG_BT_SETTINGS_USE_PRINTK was unused). Signed-off-by: Ulf Magnusson <Ulf.Magnusson@nordicsemi.no>
This commit is contained in:
parent
d0481f6d7f
commit
91dc62949e
1 changed files with 1 additions and 1 deletions
|
@ -19,7 +19,7 @@
|
|||
#include "hci_core.h"
|
||||
#include "settings.h"
|
||||
|
||||
#if defined(BT_SETTINGS_USE_PRINTK)
|
||||
#if defined(CONFIG_BT_SETTINGS_USE_PRINTK)
|
||||
void bt_settings_encode_key(char *path, size_t path_size, const char *subsys,
|
||||
bt_addr_le_t *addr, const char *key)
|
||||
{
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue