diff options
author | Tor Andersson <tor@ghostscript.com> | 2010-01-21 18:37:09 +0100 |
---|---|---|
committer | Tor Andersson <tor@ghostscript.com> | 2010-01-21 18:37:09 +0100 |
commit | f72e69fb6625f708845db643129273969b35383d (patch) | |
tree | 6d6b4870548ad7469295b8ad62a0e9ee86e4b519 | |
parent | 9738cd7a08f2bf51d2306746d3b2811adc60b0bc (diff) | |
download | mupdf-f72e69fb6625f708845db643129273969b35383d.tar.xz |
Return dst instead of fz_okay in pdf_toucs2.
-rw-r--r-- | mupdf/pdf_parse.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/mupdf/pdf_parse.c b/mupdf/pdf_parse.c index 28c441fa..dd21c86d 100644 --- a/mupdf/pdf_parse.c +++ b/mupdf/pdf_parse.c @@ -95,7 +95,7 @@ pdf_toucs2(fz_obj *src) } *dstptr = '\0'; - return fz_okay; + return dst; } fz_error |