fs_shell: use FSSH_B_DEV_NAME_LENGTH instead of 128.

Follow up to 9d432d1b00.

Change-Id: Ie7013573a0682058849e84aa939bc38a821f3ae6
Reviewed-on: https://review.haiku-os.org/c/haiku/+/10209
Tested-by: Commit checker robot <[email protected]>
Reviewed-by: waddlesplash <[email protected]>
This commit is contained in:
Oscar Lesta
2026-01-06 13:28:44 +00:00
committed by Adrien Destugues
parent 2a4448e033
commit 95225b150f
+1 -1
View File
@@ -33,7 +33,7 @@ typedef struct fssh_fs_info {
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;