From 62018b3a7fdb39a8b8bd01489f01dd32216f55f8 Mon Sep 17 00:00:00 2001 From: Sergei Zimmerman Date: Mon, 18 Aug 2025 23:24:07 +0300 Subject: [PATCH] libstore: Fix formatting Wasn't caught by CI because the PR wasn't fresh enough and didn't have formatting checks enabled. --- src/libstore/local-store.cc | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/libstore/local-store.cc b/src/libstore/local-store.cc index 7f50b43f2..81768e4eb 100644 --- a/src/libstore/local-store.cc +++ b/src/libstore/local-store.cc @@ -232,7 +232,8 @@ LocalStore::LocalStore(ref config) globalLock = openLockFile(globalLockPath.c_str(), true); } catch (SysError & e) { if (e.errNo == EACCES || e.errNo == EPERM) { - e.addTrace({}, + e.addTrace( + {}, "This command may have been run as non-root in a single-user Nix installation,\n" "or the Nix daemon may have crashed."); }