Make windows compile again by dropping const stuff added 2 commits ago

in reputation commit. Not important anyway.
This commit is contained in:
Bram Matthys 2020-12-16 15:59:10 +01:00
parent b2ceb9c825
commit fff989c46e
No known key found for this signature in database
GPG key ID: BF8116B163EAAE98

View file

@ -687,7 +687,7 @@ void reputation_channel_query(Client *client, Channel *channel)
Member *m;
char buf[512];
char tbuf[256];
const char **nicks;
char **nicks;
int *scores;
int cnt = 0, i, j;
ReputationEntry *e;
@ -724,7 +724,7 @@ void reputation_channel_query(Client *client, Channel *channel)
{
if (scores[i] < scores[j])
{
const char *nick_tmp;
char *nick_tmp;
int score_tmp;
nick_tmp = nicks[i];
score_tmp = scores[i];