From 0109fe66a67bc9075baa05302535b35c9ac0a16d Mon Sep 17 00:00:00 2001 From: Yochem van Rosmalen Date: Mon, 9 Jan 2023 21:34:36 +0100 Subject: [PATCH] os: make os.FileMode public (#16923) --- vlib/os/inode.c.v | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/vlib/os/inode.c.v b/vlib/os/inode.c.v index a82086416f..64d4608c0f 100644 --- a/vlib/os/inode.c.v +++ b/vlib/os/inode.c.v @@ -36,7 +36,7 @@ pub fn (p FilePermission) bitmask() u32 { return mask } -struct FileMode { +pub struct FileMode { pub: typ FileType owner FilePermission