diff options
author | Igor Melichev <igor.melichev@artifex.com> | 2003-01-31 17:39:28 +0000 |
---|---|---|
committer | Igor Melichev <igor.melichev@artifex.com> | 2003-01-31 17:39:28 +0000 |
commit | 3a0b2826d572b19488a57bc3e159815c2bf0e565 (patch) | |
tree | d22ce18fe9320fcc74d8b090cd019c998656c98d /gs/src/zcid.c | |
parent | 53c5c70a200dfb971631ca1c3ef83939f26a6f17 (diff) |
Fix : Removing some unused variables.
git-svn-id: http://svn.ghostscript.com/ghostscript/trunk@3591 a1074d23-0009-0410-80fe-cf8c14f379e6
Diffstat (limited to 'gs/src/zcid.c')
-rw-r--r-- | gs/src/zcid.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gs/src/zcid.c b/gs/src/zcid.c index c98923581..685f6bf5b 100644 --- a/gs/src/zcid.c +++ b/gs/src/zcid.c @@ -135,7 +135,7 @@ set_CIDMap_element(ref *CIDMap, uint cid, uint glyph_index) if (glyph_index >= 65536) return_error(e_rangecheck); /* Can't store with GDBytes == 2. */ for (i = 0; i < count; i++) { - array_get(CIDMap, i, &s), size; + array_get(CIDMap, i, &s); size = r_size(&s) & ~1; if (offset < size) { c = s.value.bytes + offset; @@ -166,7 +166,7 @@ cid_fill_CIDMap(const ref *Decoding, const ref *TT_cmap, const ref *SubstNWP, in /* Checking the CIDMap structure correctness : */ for (i = 0; i < count; i++) { ref s; - int code = array_get(CIDMap, i, &s), size; + int code = array_get(CIDMap, i, &s); if (code < 0) return code; |