mirror of
https://github.com/matrix-construct/construct
synced 2024-12-27 07:54:05 +01:00
Fix stupid linux warning
This commit is contained in:
parent
154dc91ef0
commit
d19aab3375
1 changed files with 2 additions and 2 deletions
|
@ -1079,7 +1079,7 @@ free_exited_clients(void *unused)
|
||||||
sendto_realops_snomask(SNO_GENERAL, L_ALL,
|
sendto_realops_snomask(SNO_GENERAL, L_ALL,
|
||||||
"On abort_list: %s stat: %u flags: %llu handler: %c",
|
"On abort_list: %s stat: %u flags: %llu handler: %c",
|
||||||
target_p->name, (unsigned int) target_p->status,
|
target_p->name, (unsigned int) target_p->status,
|
||||||
target_p->flags, target_p->handler);
|
(unsigned long long)target_p->flags, target_p->handler);
|
||||||
sendto_realops_snomask(SNO_GENERAL, L_ALL,
|
sendto_realops_snomask(SNO_GENERAL, L_ALL,
|
||||||
"Please report this to the charybdis developers!");
|
"Please report this to the charybdis developers!");
|
||||||
found++;
|
found++;
|
||||||
|
@ -1223,7 +1223,7 @@ exit_aborted_clients(void *unused)
|
||||||
sendto_realops_snomask(SNO_GENERAL, L_ALL,
|
sendto_realops_snomask(SNO_GENERAL, L_ALL,
|
||||||
"On dead_list: %s stat: %u flags: %llu handler: %c",
|
"On dead_list: %s stat: %u flags: %llu handler: %c",
|
||||||
abt->client->name, (unsigned int) abt->client->status,
|
abt->client->name, (unsigned int) abt->client->status,
|
||||||
abt->client->flags, abt->client->handler);
|
(unsigned long long)abt->client->flags, abt->client->handler);
|
||||||
sendto_realops_snomask(SNO_GENERAL, L_ALL,
|
sendto_realops_snomask(SNO_GENERAL, L_ALL,
|
||||||
"Please report this to the charybdis developers!");
|
"Please report this to the charybdis developers!");
|
||||||
continue;
|
continue;
|
||||||
|
|
Loading…
Reference in a new issue