diff options
Diffstat (limited to 'python/spec-py.c')
-rw-r--r-- | python/spec-py.c | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/python/spec-py.c b/python/spec-py.c index 0d17896fc..7054bd22e 100644 --- a/python/spec-py.c +++ b/python/spec-py.c @@ -32,6 +32,11 @@ * */ +struct specObject_s { + PyObject_HEAD + /*type specific fields */ + rpmSpec spec; +}; static void spec_dealloc(specObject * s) |