summaryrefslogtreecommitdiff
path: root/Build/source/texk/xdv2pdf/SimplePSInterpreter.m
diff options
context:
space:
mode:
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];