[gs-cvs] rev 7049 - trunk/gs/src
alexcher at ghostscript.com
alexcher at ghostscript.com
Fri Sep 15 19:31:47 PDT 2006
Author: alexcher
Date: 2006-09-15 19:31:46 -0700 (Fri, 15 Sep 2006)
New Revision: 7049
Modified:
trunk/gs/src/gdevpdfi.c
trunk/gs/src/gp_mswin.c
Log:
Change s/steram/stream/ introduced in rev. 7040 and causing compile errors
on old versions of MSVC. Bug 688893.
Modified: trunk/gs/src/gdevpdfi.c
===================================================================
--- trunk/gs/src/gdevpdfi.c 2006-09-14 17:29:56 UTC (rev 7048)
+++ trunk/gs/src/gdevpdfi.c 2006-09-16 02:31:46 UTC (rev 7049)
@@ -792,7 +792,7 @@
1 means no alternative streams.
2 means the main image stream and a mask stream while converting
an Image Type 4.
- 3 means the main image steram, alternative image compression stream,
+ 3 means the main image stream, alternative image compression stream,
and the compression chooser.
4 meams 3 and a mask stream while convertingh an Image Type 4.
*/
Modified: trunk/gs/src/gp_mswin.c
===================================================================
--- trunk/gs/src/gp_mswin.c 2006-09-14 17:29:56 UTC (rev 7048)
+++ trunk/gs/src/gp_mswin.c 2006-09-16 02:31:46 UTC (rev 7049)
@@ -829,9 +829,9 @@
int64_t gp_ftell_64(FILE *stream)
{
#if !defined(_MSC_VER)
- return ftell(steram);
+ return ftell(stream);
#elif _MSC_VER < 1400
- return ftell(steram);
+ return ftell(stream);
#else
return _ftelli64(stream);
#endif
@@ -840,7 +840,7 @@
int gp_fseek_64(FILE *stream, int64_t offset, int origin)
{
#if !defined(_MSC_VER)
- return fseek(steram, offset, origin);
+ return fseek(stream, offset, origin);
#elif _MSC_VER < 1400
long offset1 = (long)offset;
More information about the gs-cvs
mailing list