bluez-monitor: fix usage of pw_properties_setf without a format string

Otherwise compilation will fail with certain -Wformat-security flags
Add the flag to the warnings.
This commit is contained in:
George Kiagiadakis 2019-09-26 17:26:23 +02:00 committed by Wim Taymans
parent 56cf3196a2
commit 5183e1d4b4
2 changed files with 2 additions and 1 deletions

View file

@ -46,6 +46,7 @@ if cc.get_id() == 'gcc'
'-Wsign-compare',
'-Wimplicit-fallthrough',
'-Wpointer-arith',
'-Wformat-security',
# '-DFASTPATH',
language : 'c')
endif