diff options
author | Samuel Thibault <samuel.thibault@ens-lyon.org> | 2023-02-02 00:34:37 +0100 |
---|---|---|
committer | Samuel Thibault <samuel.thibault@ens-lyon.org> | 2023-02-02 00:34:37 +0100 |
commit | fbfc77cead9bfbc34181a438cfed18c69dd8cc04 (patch) | |
tree | 9afee537a815929faf9af3ca25f8a86ee39deb9f /ext2fs | |
parent | 2aab906790a3d73b791cb3f2af91fe41ad641994 (diff) | |
download | hurd-fbfc77cead9bfbc34181a438cfed18c69dd8cc04.tar.gz hurd-fbfc77cead9bfbc34181a438cfed18c69dd8cc04.tar.bz2 hurd-fbfc77cead9bfbc34181a438cfed18c69dd8cc04.zip |
ext2fs: use __alignof (struct dirent) instead of hardcoding 4
Diffstat (limited to 'ext2fs')
-rw-r--r-- | ext2fs/dir.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ext2fs/dir.c b/ext2fs/dir.c index e4ccadee..963f0843 100644 --- a/ext2fs/dir.c +++ b/ext2fs/dir.c @@ -869,7 +869,7 @@ count_dirents (struct node *dp, block_t nb, char *buf) /* Returned directory entries are aligned to blocks this many bytes long. Must be a power of two. */ -#define DIRENT_ALIGN 4 +#define DIRENT_ALIGN __alignof (struct dirent) /* Implement the diskfs_get_directs callback as described in <hurd/diskfs.h>. */ |