Fix warnings with strict-overflow in gcc-4.9

Signed-off-by: Allan McRae <allan@archlinux.org>
This commit is contained in:
Allan McRae 2014-02-23 11:41:40 +10:00
parent e5c714f501
commit b2488eb356
2 changed files with 3 additions and 2 deletions

View File

@ -685,7 +685,8 @@ static int endswith(const char *filename, const char *extension)
static int apply_deltas(alpm_handle_t *handle)
{
alpm_list_t *i;
int deltas_found = 0, ret = 0;
size_t deltas_found = 0;
int ret = 0;
const char *cachedir = _alpm_filecache_setup(handle);
alpm_trans_t *trans = handle->trans;
alpm_event_delta_patch_t event;

View File

@ -370,7 +370,7 @@ static int sync_group(int level, alpm_list_t *syncs, alpm_list_t *targets)
int ret = 0;
if(targets) {
int found;
size_t found;
for(i = targets; i; i = alpm_list_next(i)) {
found = 0;
const char *grpname = i->data;