1
0
mirror of https://gitlab.xiph.org/xiph/icecast-server.git synced 2024-06-16 06:15:24 +00:00

Cleanup: Corrected type int -> bool

This commit is contained in:
Philipp Schafft 2022-02-25 12:59:20 +00:00
parent 241c8f0895
commit adc1b3f025

View File

@ -1491,9 +1491,9 @@ static void command_dashboard (client_t *client, source_t *source, adm
admin_dashboard_status_t status = ADMIN_DASHBOARD_STATUS_OK;
reportxml_node_t *resource;
reportxml_node_t *node;
int has_sources;
int has_many_clients;
int has_too_many_clients;
bool has_sources;
bool has_many_clients;
bool has_too_many_clients;
bool has_legacy_sources;