mirror of
https://github.com/bjc/prosody.git
synced 2025-04-04 13:47:41 +03:00
pposix, signal: Ignore unused arguments.
This commit is contained in:
parent
9d9392a941
commit
1a23a874bc
2 changed files with 3 additions and 0 deletions
|
@ -237,6 +237,7 @@ int lc_syslog_log(lua_State *L) {
|
|||
}
|
||||
|
||||
int lc_syslog_close(lua_State *L) {
|
||||
(void)L;
|
||||
closelog();
|
||||
|
||||
if(syslog_ident) {
|
||||
|
@ -649,6 +650,7 @@ int lc_getrlimit(lua_State *L) {
|
|||
}
|
||||
|
||||
int lc_abort(lua_State *L) {
|
||||
(void)L;
|
||||
abort();
|
||||
return 0;
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue