summaryrefslogtreecommitdiffstats
path: root/hcid/storage.c
diff options
context:
space:
mode:
Diffstat (limited to 'hcid/storage.c')
-rw-r--r--hcid/storage.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/hcid/storage.c b/hcid/storage.c
index ee927a78..ade97641 100644
--- a/hcid/storage.c
+++ b/hcid/storage.c
@@ -43,13 +43,13 @@
#include "textfile.h"
#include "hcid.h"
-static int create_filename(char *buf, size_t size, bdaddr_t *bdaddr, char *name)
+static inline int create_filename(char *buf, size_t size, bdaddr_t *bdaddr, const char *name)
{
char addr[18];
ba2str(bdaddr, addr);
- return snprintf(buf, size, "%s/%s/%s", STORAGEDIR, addr, name);
+ return create_name(buf, size, STORAGEDIR, addr, name);
}
int write_discoverable_timeout(bdaddr_t *bdaddr, int timeout)