From a7af2e9d20d9093cf4ee421a78b83ca3cabcbf0a Mon Sep 17 00:00:00 2001 From: Eelco Dolstra Date: Tue, 14 May 2024 14:10:18 +0200 Subject: [PATCH] Formatting (cherry picked from commit 3af22860759509d5040ff70618247031d96a095c) --- src/libutil/file-system.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/libutil/file-system.cc b/src/libutil/file-system.cc index 3328503a2..d228f1797 100644 --- a/src/libutil/file-system.cc +++ b/src/libutil/file-system.cc @@ -420,7 +420,7 @@ void deletePath(const Path & path) deletePath(path, dummy); } -void createDir(const Path &path, mode_t mode) +void createDir(const Path & path, mode_t mode) { if (mkdir(path.c_str(), mode) == -1) throw SysError("creating directory '%1%'", path);