]> git.ipfire.org Git - thirdparty/systemd.git/commitdiff
stat-util: Use typeof_field() in one more place
authorDaan De Meyer <daan.j.demeyer@gmail.com>
Wed, 21 May 2025 11:24:22 +0000 (13:24 +0200)
committerDaan De Meyer <daan.j.demeyer@gmail.com>
Wed, 21 May 2025 11:24:42 +0000 (13:24 +0200)
src/basic/stat-util.h

index e4fd4221390b0e820e7f9802d4a10f0f343e1a19..2c5f7b9e93a8fcab678f7414095a9c00cb8af4ad 100644 (file)
@@ -57,7 +57,7 @@ static inline int fd_inode_same(int fda, int fdb) {
 
 /* The .f_type field of struct statfs is really weird defined on
  * different archs. Let's give its type a name. */
-typedef typeof(((struct statfs*)NULL)->f_type) statfs_f_type_t;
+typedef typeof_field(struct statfs, f_type) statfs_f_type_t;
 
 bool is_fs_type(const struct statfs *s, statfs_f_type_t magic_value) _pure_;
 int is_fs_type_at(int dir_fd, const char *path, statfs_f_type_t magic_value);