mirror of
https://github.com/python/cpython.git
synced 2025-08-04 08:59:19 +00:00
Add missing "static" declarations (found by "make smelly").
This commit is contained in:
parent
2677512fc1
commit
f23473f008
2 changed files with 5 additions and 5 deletions
|
@ -9,7 +9,7 @@ typedef struct {
|
|||
PyObject *md_dict;
|
||||
} PyModuleObject;
|
||||
|
||||
PyMemberDef module_members[] = {
|
||||
static PyMemberDef module_members[] = {
|
||||
{"__dict__", T_OBJECT, offsetof(PyModuleObject, md_dict), READONLY},
|
||||
{0}
|
||||
};
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue