diff options
author | Ralph Giles <giles@ghostscript.com> | 2009-12-09 01:39:58 +0100 |
---|---|---|
committer | Ralph Giles <giles@ghostscript.com> | 2009-12-09 01:39:58 +0100 |
commit | ef030e1e82ae3b00347ea46dbc9e220cea9423e6 (patch) | |
tree | 2ccae4edf9a071c3ed8c7fb68de5873669b1a31f | |
parent | 6d99bc568aec9a30d8c335c2547925c056c89227 (diff) | |
download | mupdf-ef030e1e82ae3b00347ea46dbc9e220cea9423e6.tar.xz |
Replace 'boolean' types with 'int'.
These crept in, perhaps from jpeg.h, and while not standard C are
permitted under -std
-rw-r--r-- | fitz/filt_dctd.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/fitz/filt_dctd.c b/fitz/filt_dctd.c index f9b30e42..0bfd49ca 100644 --- a/fitz/filt_dctd.c +++ b/fitz/filt_dctd.c @@ -56,7 +56,7 @@ struct fz_dctd_s }; static void myinitsource(j_decompress_ptr cinfo) { /* empty */ } -static boolean myfillinput(j_decompress_ptr cinfo) { return FALSE; } +static int myfillinput(j_decompress_ptr cinfo) { return FALSE; } static void mytermsource(j_decompress_ptr cinfo) { /* empty */ } static void myskipinput(j_decompress_ptr cinfo, long n) @@ -145,7 +145,7 @@ fz_error fz_processdctd(fz_filter *filter, fz_buffer *in, fz_buffer *out) { fz_dctd *d = (fz_dctd*)filter; - boolean b; + int b; int i; int stride; JSAMPROW scanlines[1]; |