• R/O
  • HTTP
  • SSH
  • HTTPS

Commit

Tags
No Tags

Frequently used words (click to add to your profile)

javac++androidlinuxc#windowsobjective-ccocoa誰得qtpythonphprubygameguibathyscaphec計画中(planning stage)翻訳omegatframeworktwitterdomtestvb.netdirectxゲームエンジンbtronarduinopreviewer

An Objective-C wrapper for Mac OS X’s FSEvents C API.


Commit MetaInfo

Revisionad660ce5ec0f5ebc1fc2959db325a4f1d4c40102 (tree)
Time2014-02-21 07:18:40
AuthorKrzysztof Adamski <public@kada...>
CommiterKrzysztof Adamski

Log Message

Pass unisgnedIntValue Instead of unsignedIntegerValue (XCode 5 Compilation Warnings)

Change Summary

Incremental Difference

--- a/CDEvent.m
+++ b/CDEvent.m
@@ -83,7 +83,7 @@
8383 self = [self initWithIdentifier:[[aDecoder decodeObjectForKey:@"identifier"] unsignedIntegerValue]
8484 date:[aDecoder decodeObjectForKey:@"date"]
8585 URL:[aDecoder decodeObjectForKey:@"URL"]
86- flags:(uint) [[aDecoder decodeObjectForKey:@"flags"] unsignedIntegerValue]];
86+ flags:[[aDecoder decodeObjectForKey:@"flags"] unsignedIntValue]];
8787
8888 return self;
8989 }