[General] Fix issues and warnings

This commit is contained in:
momo5502 2017-06-22 10:35:45 +02:00
parent a4dd14cde7
commit dc8b30a42f
3 changed files with 4 additions and 4 deletions

View File

@ -641,7 +641,7 @@ namespace Components
} }
} }
void Download::InfoHandler(mg_connection* nc, int ev, void* ev_data) void Download::InfoHandler(mg_connection* nc, int ev, void* /*ev_data*/)
{ {
// Only handle http requests // Only handle http requests
if (ev != MG_EV_HTTP_REQUEST) return; if (ev != MG_EV_HTTP_REQUEST) return;

View File

@ -114,7 +114,7 @@ namespace Components
} }
} }
void Playlist::PlaylistInvalidPassword(Network::Address address, std::string data) void Playlist::PlaylistInvalidPassword(Network::Address /*address*/, std::string /*data*/)
{ {
Party::PlaylistError("Error: Invalid Password for Party."); Party::PlaylistError("Error: Invalid Password for Party.");
} }