From ad194ea1bb45b13d53b143109f26598707c3c11c Mon Sep 17 00:00:00 2001 From: Razvan Nitu Date: Mon, 31 Jul 2023 11:40:05 +0300 Subject: [PATCH] Use `version(linux)` instead of `version(Linux)` --- dlib/filesystem/posix/common.d | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dlib/filesystem/posix/common.d b/dlib/filesystem/posix/common.d index ec740f02..56c4a514 100644 --- a/dlib/filesystem/posix/common.d +++ b/dlib/filesystem/posix/common.d @@ -40,7 +40,7 @@ version(Posix) } // Rename stat to stat_ because of method name collision - version(Linux) + version(linux) { alias off_t = off64_t; alias stat_t = stat64_t;