<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">--- src/oping.c
+++ src/oping.c	2024-12-13 15:38:31.000000000 +0800
@@ -1155,7 +1155,7 @@
 			wattron (ctx-&gt;window, COLOR_PAIR(color));
 
 		if (has_utf8())
-			mvwprintw (ctx-&gt;window, /* y = */ y_max, /* x = */ x + 2, symbol);
+			mvwprintw (ctx-&gt;window, /* y = */ y_max, /* x = */ x + 2, "%s", symbol);
 		else
 			mvwaddch (ctx-&gt;window, /* y = */ y_max, /* x = */ x + 2, symbolc);
 
@@ -1261,7 +1261,7 @@
 			mvwaddch (ctx-&gt;window, /* y = */ y_max, /* x = */ x + 2, ' ');
 		else if (has_utf8 ())
 			mvwprintw (ctx-&gt;window, /* y = */ y_max, /* x = */ x + 2,
-					hist_symbols_utf8[index]);
+					"%s", hist_symbols_utf8[index]);
 		else
 			mvwaddch (ctx-&gt;window, /* y = */ y_max, /* x = */ x + 2,
 					hist_symbols_acs[index] | A_ALTCHARSET);
@@ -1638,8 +1638,7 @@
 
 			HOST_PRINTF ("%zu bytes from %s (%s): icmp_seq=%u ttl=%i ",
 					data_len, context-&gt;host, context-&gt;addr,
-					sequence, recv_ttl,
-					format_qos (recv_qos, recv_qos_str, sizeof (recv_qos_str)));
+					sequence, recv_ttl);
 			if ((recv_qos != 0) || (opt_send_qos != 0))
 			{
 				HOST_PRINTF ("qos=%s ",
</pre></body></html>