summaryrefslogtreecommitdiff
path: root/src/cid
diff options
context:
space:
mode:
authorWerner Lemberg <wl@gnu.org>2006-02-09 07:38:57 +0000
committerWerner Lemberg <wl@gnu.org>2006-02-09 07:38:57 +0000
commit6be99f9104c458eeda48a51adeb65ce20ade45c3 (patch)
tree27b78ef8fc39283d244f93c3db8adb0e4e27bfbf /src/cid
parent4f41d63b02c58bf3512878f71f4f0a07ca2359fa (diff)
* src/cid/cidparse.c (cid_parse_new): Remove shadowing variable.
Formatting.
Diffstat (limited to 'src/cid')
-rw-r--r--src/cid/cidparse.c8
1 files changed, 3 insertions, 5 deletions
diff --git a/src/cid/cidparse.c b/src/cid/cidparse.c
index 7fd6c3cc..ac56363f 100644
--- a/src/cid/cidparse.c
+++ b/src/cid/cidparse.c
@@ -4,7 +4,7 @@
/* */
/* CID-keyed Type1 parser (body). */
/* */
-/* Copyright 1996-2001, 2002, 2003, 2004, 2005 by */
+/* Copyright 1996-2001, 2002, 2003, 2004, 2005, 2006 by */
/* David Turner, Robert Wilhelm, and Werner Lemberg. */
/* */
/* This file is part of the FreeType project, and may only be used, */
@@ -93,7 +93,6 @@
for ( offset = (FT_ULong)FT_STREAM_POS(); ; offset += 256 )
{
FT_Int stream_len;
- FT_Byte* limit;
stream_len = stream->size - FT_STREAM_POS();
@@ -126,9 +125,8 @@
}
Found:
- /* we have found the start of the binary data. We will now */
- /* rewind and extract the frame corresponding to the PostScript */
- /* section */
+ /* We have found the start of the binary data. Now rewind and */
+ /* extract the frame corresponding to the PostScript section. */
ps_len = offset - base_offset;
if ( FT_STREAM_SEEK( base_offset ) ||