diff options
author | dzwdz | 2021-09-08 20:22:45 +0200 |
---|---|---|
committer | dzwdz | 2021-09-08 20:22:45 +0200 |
commit | 416063625be0f70bdf84506f04ba30adaa3ba0b0 (patch) | |
tree | 1398d23d8f9b216c84e75e639d06760747de456d /src/shared | |
parent | f44b80c3f0004418c4953f0a2f32f7bec2e26e36 (diff) |
copy _syscall_fs_open's argument to a new buffer instead of a shared one
this will be needed for storing vfs_op's properly
Diffstat (limited to 'src/shared')
-rw-r--r-- | src/shared/vfs.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/shared/vfs.h b/src/shared/vfs.h index 730a288..9419b11 100644 --- a/src/shared/vfs.h +++ b/src/shared/vfs.h @@ -16,7 +16,7 @@ struct vfs_op { enum vfs_op_types type; union { struct { - const char *path; + char *path; int path_len; } open; struct { |