modules/core/m_die.c: misc cleanup for compiler warning

core/m_die.c:76:9: warning: 'return' will never be executed
                   [-Wunreachable-code-return]
This commit is contained in:
Aaron Jones 2017-07-31 04:48:37 +00:00
parent ee0a3970c8
commit 81e245be5b
No known key found for this signature in database
GPG key ID: 8AF0737488AB3012

View file

@ -72,6 +72,5 @@ mo_die(struct Client *client_p __unused, struct Client *source_p, int parc, cons
}
ircd_shutdown(get_client_name(source_p, HIDE_IP));
return 0;
/* UNREACHABLE */
}