diff options
author | Sebastian Rasmussen <sebras@gmail.com> | 2013-11-06 16:27:48 +0100 |
---|---|---|
committer | Tor Andersson <tor.andersson@artifex.com> | 2013-11-11 16:12:45 +0100 |
commit | f8e90a600b2f52d2e56b1cd174fbe259d2021097 (patch) | |
tree | 8cf9122519bbc5b37b54b3141bffe16125e679eb | |
parent | a49539c0c2c5bbf234d2bf2697c10593afeec2af (diff) | |
download | mupdf-f8e90a600b2f52d2e56b1cd174fbe259d2021097.tar.xz |
Remove unused variables causing warnings
-rw-r--r-- | source/fitz/svg-device.c | 2 | ||||
-rw-r--r-- | source/pdf/pdf-pkcs7.c | 1 |
2 files changed, 0 insertions, 3 deletions
diff --git a/source/fitz/svg-device.c b/source/fitz/svg-device.c index 7e980133..dd5a2e19 100644 --- a/source/fitz/svg-device.c +++ b/source/fitz/svg-device.c @@ -854,7 +854,6 @@ static void svg_dev_begin_mask(fz_device *dev, const fz_rect *bbox, int luminosity, fz_colorspace *colorspace, float *color) { svg_device *sdev = (svg_device *)dev->user; - fz_context *ctx = dev->ctx; fz_output *out; int mask = sdev->id++; @@ -869,7 +868,6 @@ static void svg_dev_end_mask(fz_device *dev) { svg_device *sdev = (svg_device *)dev->user; - fz_context *ctx = dev->ctx; fz_output *out = sdev->out; int mask = 0; diff --git a/source/pdf/pdf-pkcs7.c b/source/pdf/pdf-pkcs7.c index fda85693..4f770569 100644 --- a/source/pdf/pdf-pkcs7.c +++ b/source/pdf/pdf-pkcs7.c @@ -741,7 +741,6 @@ void pdf_sign_signature(pdf_document *doc, pdf_widget *widget, const char *sigfi fz_try(ctx) { unsigned char *dn_str; - int first = 1; pdf_signature_set_value(doc, ((pdf_annot *)widget)->obj, signer); dn = pdf_signer_designated_name(signer); |