mirror of
https://github.com/capstone-engine/llvm-capstone.git
synced 2024-11-27 23:51:56 +00:00
Fix an incomplete null structure spec in Python readline suppression module.
Now that I'm building Linux with clang, I'm seeing more clang warnings. This fills in some extra fields missing in the final end-of-structure-array marker. llvm-svn: 211812
This commit is contained in:
parent
ca38fdc182
commit
34413ec640
@ -8,7 +8,7 @@
|
||||
|
||||
static struct PyMethodDef moduleMethods[] =
|
||||
{
|
||||
{0, 0}
|
||||
{nullptr, nullptr, 0, nullptr}
|
||||
};
|
||||
|
||||
PyDoc_STRVAR(
|
||||
|
Loading…
Reference in New Issue
Block a user