mirror of
https://github.com/pissnet/pissircd.git
synced 2025-08-06 10:15:24 +01:00
Make windows compile again by dropping const stuff added 2 commits ago
in reputation commit. Not important anyway.
This commit is contained in:
parent
b2ceb9c825
commit
fff989c46e
1 changed files with 2 additions and 2 deletions
|
@ -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];
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue