summaryrefslogtreecommitdiff
path: root/source/fitz/function.c
diff options
context:
space:
mode:
authorTor Andersson <tor.andersson@artifex.com>2016-02-22 14:29:14 +0100
committerTor Andersson <tor.andersson@artifex.com>2016-02-22 14:31:17 +0100
commitbbc4678dd53e3742b5ce7f96aba03038215bbbc4 (patch)
tree645502a5ac7388bb3ee873288aad3942216dbf01 /source/fitz/function.c
parent2af96d78c56c9cc81176c732563a5a4338012a0b (diff)
downloadmupdf-bbc4678dd53e3742b5ce7f96aba03038215bbbc4.tar.xz
Remove pointless casts from void*.
Extraneous explicit type casts can mask errors, especially if a function prototype or return value changes in the future.
Diffstat (limited to 'source/fitz/function.c')
-rw-r--r--source/fitz/function.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/fitz/function.c b/source/fitz/function.c
index 75e47a94..138552ac 100644
--- a/source/fitz/function.c
+++ b/source/fitz/function.c
@@ -33,7 +33,7 @@ fz_eval_function(fz_context *ctx, fz_function *func, const float *in, int inlen,
fz_function *
fz_keep_function(fz_context *ctx, fz_function *func)
{
- return (fz_function *)fz_keep_storable(ctx, &func->storable);
+ return fz_keep_storable(ctx, &func->storable);
}
void