| author | Oscar Lesta <oscar.lesta@gmail.com> | 2026-01-04 7:39:31.0 -03:00:00 |
|---|---|---|
| committer | Adrien Destugues <pulkomandy@pulkomandy.tk> | 2026-01-06 13:28:44.0 +00:00:00 |
| commit | 95225b150f1f5421b03ff1870d1ef36b02090c82 [patch] |
|
| tree | 5f8c3ee83c6ba2069d42b9be16ef0861dedc4a78 |
|
| parent | 2a4448e03333a62bf19cfa90846ea599a58938eb |
|
| download | 95225b150f1f5421b03ff1870d1ef36b02090c82.tar.gz |
|
fs_shell: use FSSH_B_DEV_NAME_LENGTH instead of 128.
Follow up to 9d432d1b00af7785453047e51b94eb311dd500a8. Change-Id: Ie7013573a0682058849e84aa939bc38a821f3ae6 Reviewed-on: https://review.haiku-os.org/c/haiku/+/10209 Tested-by: Commit checker robot <no-reply+buildbot@haiku-os.org> Reviewed-by: waddlesplash <waddlesplash@gmail.com>
Diff
headers/private/fs_shell/fssh_fs_info.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/headers/private/fs_shell/fssh_fs_info.h b/headers/private/fs_shell/fssh_fs_info.h index cb61abc..def1089 100644 --- a/headers/private/fs_shell/fssh_fs_info.h +++ b/headers/private/fs_shell/fssh_fs_info.h @@ -33,7 +33,7 @@ fssh_off_t free_blocks; /* number of free blocks */ fssh_off_t total_nodes; /* total number of nodes */ fssh_off_t free_nodes; /* number of free nodes */ char device_name[128]; /* device holding fs */ char device_name[FSSH_B_DEV_NAME_LENGTH]; /* device holding fs */ char volume_name[FSSH_B_FILE_NAME_LENGTH]; /* volume name */ char fsh_name[FSSH_B_OS_NAME_LENGTH]; /* name of fs handler */ } fssh_fs_info;