1
0
mirror of https://gitlab.xiph.org/xiph/icecast-server.git synced 2024-09-22 04:15:54 -04:00

Fix: Corrected used type (int) -> (size_t)

This commit is contained in:
Philipp Schafft 2018-09-14 07:51:38 +00:00
parent 40c5751a06
commit 355e90ef66
2 changed files with 2 additions and 2 deletions

View File

@ -271,7 +271,7 @@ struct ice_config_tag {
char *yp_url[MAX_YP_DIRECTORIES];
int yp_url_timeout[MAX_YP_DIRECTORIES];
int yp_touch_interval[MAX_YP_DIRECTORIES];
int num_yp_directories;
size_t num_yp_directories;
};
typedef struct {

View File

@ -216,7 +216,7 @@ static ypdata_t *find_yp_mount (ypdata_t *mounts, const char *mount)
void yp_recheck_config (ice_config_t *config)
{
int i;
size_t i;
struct yp_server *server;
ICECAST_LOG_DEBUG("Updating YP configuration");