Remove comma that unintentionally breaks an exception format string

This commit is contained in:
Wolfgang Lux 2017-12-27 18:59:05 +01:00
parent 3967d6a602
commit fdce6b2210
2 changed files with 4 additions and 1 deletions

View file

@ -1,5 +1,8 @@
2017-12-27 Wolfgang Lux <wolfgang.lux@gmail.com>
* STBlock.m (valueWithArguments:): Remove comma that unintentionally
breaks an exception format string
* STCompilerUtils.h: Fix wrong return type in method declaration
flagged up by the GNUstep runtime.

View file

@ -202,7 +202,7 @@ Class STBlockContextClass = nil;
usingCachedContext = NO;
else
[NSException raise:STInternalInconsistencyException
format:@"%@: using cached context %@",
format:@"%@: using cached context %@"
@" but usingCachedContext is not set",
self, cachedContext];
}