From 012cd7a5888913ae5efc0762a019ff1fd5e27551 Mon Sep 17 00:00:00 2001 From: Markus Mittendrein Date: Mon, 29 Jul 2019 21:28:55 +0200 Subject: Use operators .. and ..= instead of Format where appropriate --- DTFormatN.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'DTFormatN.c') diff --git a/DTFormatN.c b/DTFormatN.c index 0f9481b..37f604e 100644 --- a/DTFormatN.c +++ b/DTFormatN.c @@ -31,7 +31,7 @@ global func FormatN(string format, array placeholders, array items) { if(c == 37 && GetLength(placeholderType) == 0) // % { - ret = Format("%s%%", ret); + ret ..= "%"; inPlaceholder = 0; } else -- cgit v1.2.3-54-g00ecf