Commit 1bd00b8a authored by Max Kellermann's avatar Max Kellermann

output/httpd/IcyMetaDataServer: remove the int cast

Why did this cast exist??
parent d84eaeaf
......@@ -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;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment