From 6c27f73c32381b2e46b28a1d5963e6033135f226 Mon Sep 17 00:00:00 2001 From: "ledererc@gmail.com" Date: Fri, 27 Jul 2012 12:24:53 +0200 Subject: [PATCH] Removed warning in WBBaseNoticeView.raiseIfObjectIsNil WBBaseNoticeView.m:41:80: Format specifies type 'char *' but the argument has type 'SEL' --- NoticeView/WBNoticeView/WBBaseNoticeView.m | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/NoticeView/WBNoticeView/WBBaseNoticeView.m b/NoticeView/WBNoticeView/WBBaseNoticeView.m index 86c33ae..1f602a3 100644 --- a/NoticeView/WBNoticeView/WBBaseNoticeView.m +++ b/NoticeView/WBNoticeView/WBBaseNoticeView.m @@ -38,7 +38,7 @@ NSLog(@"%@", [NSThread callStackSymbols]); [[NSException exceptionWithName:NSInvalidArgumentException - reason:[NSString stringWithFormat:@"*** -[%@ %s]: '%@' cannot be nil.", [self class], _cmd, name] + reason:[NSString stringWithFormat:@"*** -[%@ %@]: '%@' cannot be nil.", [self class], NSStringFromSelector(_cmd), name] userInfo:nil]raise]; } }