index : pacman | |
Archlinux32 fork of pacman | gitolite user |
summaryrefslogtreecommitdiff |
author | Dan McGee <dan@archlinux.org> | 2011-09-07 20:43:49 -0500 |
---|---|---|
committer | Dan McGee <dan@archlinux.org> | 2011-09-07 21:05:04 -0500 |
commit | 8ffa2b24a5e3d63d6f34a1257ed67904ec051e3d (patch) | |
tree | 0fa0ee4e513c2207af8f40eff705b18848906630 /lib/libalpm/diskspace.h | |
parent | b961ebe16ffb75bb947a193daa9e9fe639b6403d (diff) |
-rw-r--r-- | lib/libalpm/diskspace.h | 7 |
diff --git a/lib/libalpm/diskspace.h b/lib/libalpm/diskspace.h index 79e16772..5944bb17 100644 --- a/lib/libalpm/diskspace.h +++ b/lib/libalpm/diskspace.h @@ -26,6 +26,9 @@ #if defined(HAVE_SYS_STATVFS_H) #include <sys/statvfs.h> #endif +#if defined(HAVE_SYS_TYPES_H) +#include <sys/types.h> +#endif #include "alpm.h" @@ -39,8 +42,8 @@ typedef struct __alpm_mountpoint_t { char *mount_dir; size_t mount_dir_len; /* storage for additional disk usage calculations */ - long blocks_needed; - long max_blocks_needed; + blkcnt_t blocks_needed; + blkcnt_t max_blocks_needed; enum mount_used_level used; int read_only; FSSTATSTYPE fsp; |