Fix stupid linux warning

This commit is contained in:
Elizabeth Myers 2016-04-10 09:22:34 -05:00
parent 154dc91ef0
commit d19aab3375

View file

@ -1079,7 +1079,7 @@ free_exited_clients(void *unused)
sendto_realops_snomask(SNO_GENERAL, L_ALL,
"On abort_list: %s stat: %u flags: %llu handler: %c",
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,
"Please report this to the charybdis developers!");
found++;
@ -1223,7 +1223,7 @@ exit_aborted_clients(void *unused)
sendto_realops_snomask(SNO_GENERAL, L_ALL,
"On dead_list: %s stat: %u flags: %llu handler: %c",
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,
"Please report this to the charybdis developers!");
continue;