diff options
author | Paul Gardiner <paulg.artifex@glidos.net> | 2013-08-07 15:08:55 +0100 |
---|---|---|
committer | Paul Gardiner <paulg.artifex@glidos.net> | 2013-08-13 16:36:05 +0100 |
commit | 7b11a823f9e35c971cc4f1719a6f9c3947a2ba47 (patch) | |
tree | d15ffa5bf98000b2c88f29c01b55a7a3777be27c /include | |
parent | 8d5ef1952803d060c8042de274fa7f59f1cdb66e (diff) | |
download | mupdf-7b11a823f9e35c971cc4f1719a6f9c3947a2ba47.tar.xz |
Remove unnecessary parameter
Diffstat (limited to 'include')
-rw-r--r-- | include/mupdf/pdf/crypt.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/mupdf/pdf/crypt.h b/include/mupdf/pdf/crypt.h index fd47117a..79a72aaa 100644 --- a/include/mupdf/pdf/crypt.h +++ b/include/mupdf/pdf/crypt.h @@ -36,6 +36,6 @@ int pdf_signature_widget_contents(pdf_document *doc, pdf_widget *widget, char ** /* fz_check_signature: check a signature's certificate chain and digest */ -int pdf_check_signature(fz_context *ctx, pdf_document *doc, pdf_widget *widget, char *file, char *ebuf, int ebufsize); +int pdf_check_signature(pdf_document *doc, pdf_widget *widget, char *file, char *ebuf, int ebufsize); #endif |