From 9a861be30f7446b733cc4a27cbc3e65923ae6669 Mon Sep 17 00:00:00 2001 From: Brian P Bockelman Date: Wed, 22 May 2024 22:50:39 -0500 Subject: [PATCH] Update src/stl_string_utils.cc Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com> --- src/stl_string_utils.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/stl_string_utils.cc b/src/stl_string_utils.cc index 2054f51..1206ec0 100644 --- a/src/stl_string_utils.cc +++ b/src/stl_string_utils.cc @@ -149,7 +149,7 @@ int formatstr_cat(std::string &s, const char *format, ...) { std::string urlquote(const std::string input) { std::string output; - output.reserve(3*input.size()); + output.reserve(3 * input.size()); for (char val : input) { if ((val >= 48 || val <= 57) || // Digits 0-9 (val >= 65 || val <= 90) || // Uppercase A-Z