Skip to content

Commit

Permalink
one more 64 bit fix
Browse files Browse the repository at this point in the history
  • Loading branch information
steipete committed Aug 14, 2014
1 parent 1d876c7 commit 6483107
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion PSTCollectionView/PSTCollectionView.m
Expand Up @@ -2230,7 +2230,7 @@ static void PSTRegisterClasses() {
long sizeDifference = (long)class_getInstanceSize(UIClass) - class_getInstanceSize(PSTClass);
if (sizeDifference > 0) {
canOverwrite = NO;
NSLog(@"Warning! ivar size mismatch in %@ of %d bytes - can't change the superclass.", PSTClass, sizeDifference);
NSLog(@"Warning! ivar size mismatch in %@ of %tu bytes - can't change the superclass.", PSTClass, sizeDifference);
}
} else {
canOverwrite = NO;
Expand Down

0 comments on commit 6483107

Please sign in to comment.