output/httpd/IcyMetaDataServer: remove the int cast

Why did this cast exist??
This commit is contained in:
Max Kellermann 2017-02-19 19:08:06 +01:00
parent d84eaeafc5
commit 1bd00b8a9a

View File

@ -68,7 +68,7 @@ icy_server_metadata_string(const char *stream_title, const char* stream_url)
meta_length--; // subtract placeholder
meta_length = ((int)meta_length / 16) + 1;
meta_length = meta_length / 16 + 1;
icy_metadata[0] = meta_length;