Skip to content

Commit

Permalink
basic: fix build on architectures with small long
Browse files Browse the repository at this point in the history
The x32 architecture has a small "long" type which is not enough to hold
struct statfs.f_type.
  • Loading branch information
helmutg authored and martinpitt committed Nov 24, 2015
1 parent e35a787 commit d6cd084
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions src/basic/stat-util.h
Expand Up @@ -52,9 +52,8 @@ int path_is_os_tree(const char *path);
int files_same(const char *filea, const char *fileb);

/* The .f_type field of struct statfs is really weird defined on
* different archs. Let's use our own type we know is sufficiently
* larger to store the possible values. */
typedef long statfs_f_type_t;
* different archs. Let's give its type a name. */
typedef typeof(((struct statfs*)NULL)->f_type) statfs_f_type_t;

bool is_fs_type(const struct statfs *s, statfs_f_type_t magic_value) _pure_;
int fd_check_fstype(int fd, statfs_f_type_t magic_value);
Expand Down

0 comments on commit d6cd084

Please sign in to comment.