[generate_argument_docbook] Fix typo in XML entity.

The character '>' was being rendered as < instead of >.
This commit is contained in:
Simon Tatham
2020-05-30 10:57:10 +01:00
committed by akallabeth
parent d1dc2fb03d
commit 921cd45d42

View File

@@ -89,7 +89,7 @@ LPSTR tr_esc_str(LPCSTR arg, bool format)
strncpy(&tmp[cs], "</replaceable>", len);
else
/* coverity[buffer_size] */
strncpy(&tmp[cs], "&lt;", len);
strncpy(&tmp[cs], "&gt;", len);
cs += len;
break;