Merge pull request #1571 from tancred/xcodecapp_fix_wrong_format_specifier

Corrected the format specifier for a logging statement in XcodeCapp.
This commit is contained in:
aparajita
2012-07-13 07:51:07 -07:00
+1 -1
View File
@@ -79,7 +79,7 @@ void fsevents_callback(ConstFSEventStreamRef streamRef,
flags & kFSEventStreamEventFlagItemXattrMod ||
flags & kFSEventStreamEventFlagItemChangeOwner))
{
DLog(@"event type: %@ for path %@", flags, path);
DLog(@"event type: %u for path %@", flags, path);
[xcc handleFileModification:path notify:YES];
}