bin: use unsigned int rather than size_t.

unsigned int is a 32-bit value both on 32/64-bit targets.
This commit is contained in:
Juan RP
2020-02-22 11:29:18 +01:00
parent c031ee6945
commit bc9fab5ee8
4 changed files with 16 additions and 16 deletions

View File

@@ -48,8 +48,8 @@ struct transaction {
/* from transaction.c */
int install_new_pkg(struct xbps_handle *, const char *, bool);
int update_pkg(struct xbps_handle *, const char *);
int dist_upgrade(struct xbps_handle *, size_t, bool, bool);
int exec_transaction(struct xbps_handle *, size_t, bool, bool);
int dist_upgrade(struct xbps_handle *, unsigned int, bool, bool);
int exec_transaction(struct xbps_handle *, unsigned int, bool, bool);
/* from question.c */
bool yesno(const char *, ...);
@@ -62,8 +62,8 @@ void fetch_file_progress_cb(const struct xbps_fetch_cb_data *, void *);
int state_cb(const struct xbps_state_cb_data *, void *);
/* From util.c */
void print_package_line(const char *, size_t, bool);
bool print_trans_colmode(struct transaction *, size_t);
void print_package_line(const char *, unsigned int, bool);
bool print_trans_colmode(struct transaction *, unsigned int);
int get_maxcols(void);
#endif /* !_XBPS_INSTALL_DEFS_H_ */