Skip to content

Commit

Permalink
Corrected the format specifier for the flags variable.
Browse files Browse the repository at this point in the history
  • Loading branch information
tancred committed Jun 23, 2012
1 parent d39849b commit 3f65153
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Tools/XcodeCapp/FSEventCallback.m
Expand Up @@ -79,7 +79,7 @@ void fsevents_callback(ConstFSEventStreamRef streamRef,
flags & kFSEventStreamEventFlagItemXattrMod ||
flags & kFSEventStreamEventFlagItemChangeOwner))
{
DLog(@"event type: %@ for path %@", flags, path);
DLog(@"event type: %d for path %@", flags, path);
[xcc handleFileModification:path notify:YES];
}

Expand Down

0 comments on commit 3f65153

Please sign in to comment.