diff options
Diffstat (limited to 'Include/structseq.h')
-rw-r--r-- | Include/structseq.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Include/structseq.h b/Include/structseq.h index e89265a..4f5c09f 100644 --- a/Include/structseq.h +++ b/Include/structseq.h @@ -15,7 +15,7 @@ typedef struct PyStructSequence_Field { typedef struct PyStructSequence_Desc { const char *name; const char *doc; - struct PyStructSequence_Field *fields; + PyStructSequence_Field *fields; int n_in_sequence; } PyStructSequence_Desc; |