From 256a5ee750747301689f314d4bd1e23de0817b9b Mon Sep 17 00:00:00 2001 From: Andreas Krug <153394595+Andreas-Krug@users.noreply.github.com> Date: Wed, 2 Apr 2025 19:38:42 +0200 Subject: [PATCH] [locale.money.get.virtuals] Spaces around operator + --- source/text.tex | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/source/text.tex b/source/text.tex index c39c541c69..edb73a192d 100644 --- a/source/text.tex +++ b/source/text.tex @@ -4276,7 +4276,7 @@ \end{footnote} \begin{codeblock} for (int i = 0; i < n; ++i) - buf2[i] = src[find(atoms, atoms+sizeof(src), buf1[i]) - atoms]; + buf2[i] = src[find(atoms, atoms + sizeof(src), buf1[i]) - atoms]; buf2[n] = 0; sscanf(buf2, "%Lf", &units); \end{codeblock}