From 1d744444486fc66c8f12e2a8f0e81773a65bf545 Mon Sep 17 00:00:00 2001 From: Sam Bingner Date: Mon, 27 May 2019 15:43:29 -1000 Subject: Make it actually compile with saurik's updates --- CyteKit/stringWith.mm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'CyteKit') diff --git a/CyteKit/stringWith.mm b/CyteKit/stringWith.mm index da647df..bba6108 100644 --- a/CyteKit/stringWith.mm +++ b/CyteKit/stringWith.mm @@ -36,7 +36,7 @@ + (NSString *) stringWithFormat:(NSString *)format :(size_t)count :(id *)args { switch (count) { case 0: - return [[[NSString alloc] initWithFormat:format] autorelease];; + return [[[NSString alloc] initWithString:format] autorelease];; case 1: return [[[NSString alloc] initWithFormat:format, args[0]] autorelease];; case 2: -- cgit v1.2.3