Skip to content
Merged
Changes from 1 commit
Commits
Show all changes
22 commits
Select commit Hold shift + click to select a range
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
change syslog audit args formatting
  • Loading branch information
noamcohen97 committed Jul 20, 2022
commit 8626c65b6e73ca12ae8eeed08f4f29d8e0e31824
2 changes: 1 addition & 1 deletion Modules/syslogmodule.c
Original file line number Diff line number Diff line change
Expand Up @@ -244,7 +244,7 @@ static long
syslog_setlogmask_impl(PyObject *module, long maskpri)
/*[clinic end generated code: output=d6ed163917b434bf input=adff2c2b76c7629c]*/
{
if (PySys_Audit("syslog.setlogmask", "(l)", maskpri) < 0) {
if (PySys_Audit("syslog.setlogmask", "l", maskpri) < 0) {
return -1;
}

Expand Down