summaryrefslogtreecommitdiff
path: root/Build/source/texk/xdv2pdf/SimplePSInterpreter.m
diff options
context:
space:
mode:
authorJonathan Kew <jfkthame@googlemail.com>2008-06-03 12:44:38 +0000
committerJonathan Kew <jfkthame@googlemail.com>2008-06-03 12:44:38 +0000
commite4496f799a3a3110421f2f6f12c58349594e46b1 (patch)
treec145378cf174af46cc5cf6e74d744e6b292b539a /Build/source/texk/xdv2pdf/SimplePSInterpreter.m
parentccf81131844c261df85738c1c44c7df007985276 (diff)
merged xdv2pdf (for OS X) update from xetex svn
git-svn-id: svn://tug.org/texlive/trunk@8519 c570f23f-e606-0410-a88d-b1316a301751
Diffstat (limited to 'Build/source/texk/xdv2pdf/SimplePSInterpreter.m')
-rw-r--r--Build/source/texk/xdv2pdf/SimplePSInterpreter.m2
1 files changed, 1 insertions, 1 deletions
diff --git a/Build/source/texk/xdv2pdf/SimplePSInterpreter.m b/Build/source/texk/xdv2pdf/SimplePSInterpreter.m
index b506440b2f9..11afc5c02ee 100644
--- a/Build/source/texk/xdv2pdf/SimplePSInterpreter.m
+++ b/Build/source/texk/xdv2pdf/SimplePSInterpreter.m
@@ -503,7 +503,7 @@ static NSString *NullPSObject = @"[NIL]";
NSString *decryptString(NSString *inString)
{
- unsigned const char *inbuf = [inString cString];
+ unsigned const char *inbuf = (unsigned const char *)[inString cString];
unsigned long insize = [inString cStringLength];
NSMutableData *result = [NSMutableData dataWithLength:insize];
unsigned char *outbuf = [result mutableBytes];