Following the instructions from the SO answer, I changed the offending line:
NSLog(fullPath);
into:
NSLog(@"%@", fullPath);
and the warning disappeared.
Regards,
rad
Eumir Gaspar
unread,
Feb 7, 2010, 2:08:44 AM2/7/10
Reply to author
Sign in to reply to author
Forward
Sign in to forward
Delete
You do not have permission to delete messages in this group
Copy link
Report message
Show original message
Either email addresses are anonymous for this group or you need the view member email addresses permission to view the original message
to cocoahea...@googlegroups.com
Just to clarify, does that mean that even if it we are using Leopard, we should still use the NSLOG(@"%@" m fullPath) syntax since just logging fullpath is a potential bug that can crash the app?