On Thu, Jan 2, 2014 at 4:03 PM, Allan McRae <[email protected]> wrote:
> On 03/01/14 04:37, Dan McGee wrote: > > Signed-off-by: Dan McGee <[email protected]> > > --- > > I had submitted this a patch flagging the parameters as potentially unused: > https://patchwork.archlinux.org/patch/1788/ > I am not a huge fan of flagging things as unused when they are in fact used on certain code paths, but I'm not going to object either way. You're in charge! :) > > > 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; > > > > >
