[pacman-dev] [PATCH] Fix compile warnings on systems without getmntent
Dan McGee
dan at archlinux.org
Thu Jan 2 13:37:07 EST 2014
Signed-off-by: Dan McGee <dan at archlinux.org>
---
lib/libalpm/diskspace.c | 3 +++
1 file changed, 3 insertions(+)
diff --git a/lib/libalpm/diskspace.c b/lib/libalpm/diskspace.c
index dcab3b0..cfd0a7a 100644
--- a/lib/libalpm/diskspace.c
+++ b/lib/libalpm/diskspace.c
@@ -84,6 +84,9 @@ static int mount_point_load_fsinfo(alpm_handle_t *handle, alpm_mountpoint_t *mou
_alpm_log(handle, ALPM_LOG_DEBUG, "loading fsinfo for %s\n", mountpoint->mount_dir);
mountpoint->read_only = mountpoint->fsp.f_flag & ST_RDONLY;
mountpoint->fsinfo_loaded = MOUNT_FSINFO_LOADED;
+#else
+ (void)handle;
+ (void)mountpoint;
#endif
return 0;
--
1.8.5.2
More information about the pacman-dev
mailing list