Fix some "format not a string literal and no format arguments" warnings.
[obnox/wireshark/wip.git] / plugins / profinet / packet-pn.c
index 856e8ab43c774e04cad112b9b081fd459cc6b7dd..8828ddca7854fc3687ea77242e798a76146ff3f9 100644 (file)
@@ -274,7 +274,7 @@ void
 pn_append_info(packet_info *pinfo, proto_item *dcp_item, const char *text)
 {
     if (check_col(pinfo->cinfo, COL_INFO))
-        col_append_fstr(pinfo->cinfo, COL_INFO, text);
+        col_append_str(pinfo->cinfo, COL_INFO, text);
 
     proto_item_append_text(dcp_item, "%s", text);
 }