diff options
Diffstat (limited to 'source/pdf/js/pdf-jsimp-jscore.c')
-rw-r--r-- | source/pdf/js/pdf-jsimp-jscore.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/source/pdf/js/pdf-jsimp-jscore.c b/source/pdf/js/pdf-jsimp-jscore.c index 55808b4c..364b08b5 100644 --- a/source/pdf/js/pdf-jsimp-jscore.c +++ b/source/pdf/js/pdf-jsimp-jscore.c @@ -293,12 +293,11 @@ void pdf_drop_jsimp(pdf_jsimp *imp) } } -pdf_jsimp_type *pdf_jsimp_new_type(pdf_jsimp *imp, pdf_jsimp_dtr *dtr) +pdf_jsimp_type *pdf_jsimp_new_type(pdf_jsimp *imp, pdf_jsimp_dtr *dtr, char *name) { pdf_jsimp_type *type = fz_malloc_struct(imp->ctx, pdf_jsimp_type); type->imp = imp; type->dtr = dtr; - return type; } |