qcacmn: Fix qdf_tso_seg_dbg_bug to use qdf_print format string

Fix build issue with extra compile flags [-Werror,-Wformat-security]

Change-Id: Ia2d516f3ff35d8d3b48a337b24d74ff8f3d83363
CRs-Fixed: 2174715
This commit is contained in:
Manjunathappa Prakash
2018-04-17 10:55:25 -07:00
committed by nshrivas
parent 41da247986
commit 2c3dba28d9

View File

@@ -614,7 +614,7 @@ void __printf(3, 4) qdf_snprintf(char *str_buffer, unsigned int size,
static inline void qdf_tso_seg_dbg_bug(char *msg)
{
qdf_print(msg);
qdf_print("%s", msg);
QDF_BUG(0);
};