Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Refactor file system paths #1907

Merged
merged 17 commits into from
Dec 27, 2024
Prev Previous commit
Next Next commit
Fix
  • Loading branch information
raviqqe committed Dec 27, 2024
commit d7e7eda12048b458781ac8f55396497cfde47303
2 changes: 1 addition & 1 deletion file/src/file_system/libc.rs
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ use libc::{F_OK, S_IRUSR, S_IWUSR};

const PATH_SIZE: usize = 128;

struct CString(Vec<u8, PATH_SIZE>);
pub struct CString(Vec<u8, PATH_SIZE>);

impl CString {
pub fn new(vector: Vec<u8, PATH_SIZE>) -> Self {
Expand Down
Loading