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
diff --git a/qdf/inc/qdf_trace.h b/qdf/inc/qdf_trace.h
index 9bf4242..951cfb3 100644
--- a/qdf/inc/qdf_trace.h
+++ b/qdf/inc/qdf_trace.h
@@ -614,7 +614,7 @@
 
 static inline void qdf_tso_seg_dbg_bug(char *msg)
 {
-	qdf_print(msg);
+	qdf_print("%s", msg);
 	QDF_BUG(0);
 };