Skip to content
Merged
Changes from 1 commit
Commits
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
using the var name module to replace m in get_audioop_state()
  • Loading branch information
shihai1991 committed Mar 1, 2020
commit 5364b74fe08bc59063a148639484cc7c67419d99
4 changes: 2 additions & 2 deletions Modules/audioop.c
Original file line number Diff line number Diff line change
Expand Up @@ -378,9 +378,9 @@ typedef struct {
} audioop_state;

static inline audioop_state *
get_audioop_state(PyObject *m)
get_audioop_state(PyObject *module)
{
void *state = PyModule_GetState(m);
void *state = PyModule_GetState(module);
assert(state != NULL);
return (audioop_state *)state;
}
Expand Down