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 /platform/x11 | |
parent | 8d5ef1952803d060c8042de274fa7f59f1cdb66e (diff) | |
download | mupdf-7b11a823f9e35c971cc4f1719a6f9c3947a2ba47.tar.xz |
Remove unnecessary parameter
Diffstat (limited to 'platform/x11')
-rw-r--r-- | platform/x11/pdfapp.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/platform/x11/pdfapp.c b/platform/x11/pdfapp.c index 34e0a8ca..fc88eeae 100644 --- a/platform/x11/pdfapp.c +++ b/platform/x11/pdfapp.c @@ -1412,7 +1412,7 @@ void pdfapp_onmouse(pdfapp_t *app, int x, int y, int btn, int modifiers, int sta char ebuf[256]; ebuf[0] = 0; - if (pdf_check_signature(ctx, idoc, widget, app->docpath, ebuf, sizeof(ebuf))) + if (pdf_check_signature(idoc, widget, app->docpath, ebuf, sizeof(ebuf))) { winwarn(app, "Signature is valid"); } |