aboutsummaryrefslogtreecommitdiff
path: root/bbot/agent
diff options
context:
space:
mode:
authorBoris Kolpackov <boris@codesynthesis.com>2022-10-27 16:01:43 +0200
committerBoris Kolpackov <boris@codesynthesis.com>2022-10-27 16:01:43 +0200
commitb88ee1c13fa99ec2ed5126b18418bace1f95ed36 (patch)
tree6852611d200e7990ef1b4faf3dfe2873d89349b2 /bbot/agent
parent3ca248eb8f6ebeca4ab0c5fdc67c768769a058ed (diff)
Suppress (potential) bogus GCC 12 -Wrestrict warnings
Diffstat (limited to 'bbot/agent')
-rw-r--r--bbot/agent/machine.cxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/bbot/agent/machine.cxx b/bbot/agent/machine.cxx
index 443ab28..8308989 100644
--- a/bbot/agent/machine.cxx
+++ b/bbot/agent/machine.cxx
@@ -415,7 +415,7 @@ namespace bbot
// RAM and CPU configuration.
//
- "-m", to_string (ram / 1024) + "M",
+ "-m", to_string (ram / 1024) + 'M',
"-smp", (to_string (cpus) +
",sockets=" + to_string (sockets) +
",cores=" + to_string (cores) +