Skip to content

Commit

Permalink
Yes, that function works with different endianess, now that we explic…
Browse files Browse the repository at this point in the history
…itly read the values in an endian-neutral way.
  • Loading branch information
nygard committed Jun 29, 2009
1 parent 650e4d0 commit 287fe8f
Showing 1 changed file with 0 additions and 1 deletion.
1 change: 0 additions & 1 deletion CDLCDylib.m
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,6 @@
#import "CDFatFile.h"
#import "CDMachOFile.h"

// Does this work with different endianness?
static NSString *CDDylibVersionString(unsigned long version)
{
return [NSString stringWithFormat:@"%d.%d.%d", version >> 16, (version >> 8) & 0xff, version & 0xff];
Expand Down

0 comments on commit 287fe8f

Please sign in to comment.