fix vipssave parent class

oops, was not typing parent_class correctly
This commit is contained in:
John Cupitt 2021-01-02 18:36:33 +00:00
parent 5d229e0b9e
commit 1650332906
1 changed files with 2 additions and 3 deletions

View File

@ -152,10 +152,9 @@ vips_foreign_save_vips_init( VipsForeignSaveVips *vips )
} }
typedef struct _VipsForeignSaveVipsFile { typedef struct _VipsForeignSaveVipsFile {
VipsForeignSave parent_object; VipsForeignSaveVips parent_object;
char *filename; char *filename;
} VipsForeignSaveVipsFile; } VipsForeignSaveVipsFile;
typedef VipsForeignSaveVipsClass VipsForeignSaveVipsFileClass; typedef VipsForeignSaveVipsClass VipsForeignSaveVipsFileClass;
@ -206,7 +205,7 @@ vips_foreign_save_vips_file_init( VipsForeignSaveVipsFile *file )
} }
typedef struct _VipsForeignSaveVipsTarget { typedef struct _VipsForeignSaveVipsTarget {
VipsForeignSave parent_object; VipsForeignSaveVips parent_object;
VipsTarget *target; VipsTarget *target;