From 3f65153d4fbcb74400c744a33a2477dbafe17d1e Mon Sep 17 00:00:00 2001 From: Malte Tancred Date: Sat, 23 Jun 2012 22:46:25 +0200 Subject: [PATCH] Corrected the format specifier for the flags variable. --- Tools/XcodeCapp/FSEventCallback.m | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Tools/XcodeCapp/FSEventCallback.m b/Tools/XcodeCapp/FSEventCallback.m index 9df1fd56a6..fcf4baef5f 100644 --- a/Tools/XcodeCapp/FSEventCallback.m +++ b/Tools/XcodeCapp/FSEventCallback.m @@ -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]; }