Fix clang-format complaints

Somehow we forgot to add shm.h & shm_linux.h to the list of headers to be
formatted.

closes https://github.com/official-stockfish/Stockfish/pull/6591

No functional change
This commit is contained in:
Disservin
2026-02-04 17:34:11 +01:00
committed by Joost VandeVondele
parent 0d26c61ff2
commit 1018879fe1
3 changed files with 12 additions and 10 deletions
+2 -1
View File
@@ -535,7 +535,8 @@ struct SystemWideSharedConstant {
std::size_t executable_hash = hash_string(getExecutablePathHash());
char buf[1024];
std::snprintf(buf, sizeof(buf), "Local\\sf_%zu$%zu$%zu", content_hash, executable_hash, discriminator);
std::snprintf(buf, sizeof(buf), "Local\\sf_%zu$%zu$%zu", content_hash, executable_hash,
discriminator);
std::string shm_name = buf;
#if defined(__linux__) && !defined(__ANDROID__)