Skip to content

Commit

Permalink
Read a 64 bit value for the pointer from the protocol list.
Browse files Browse the repository at this point in the history
  • Loading branch information
nygard committed Jun 26, 2009
1 parent ac05e08 commit a4717bc
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion CDObjectiveC2Processor.m
Expand Up @@ -338,7 +338,7 @@ - (CDOCProtocol *)protocolAtAddress:(uint64_t)address;
uint64_t val;
CDOCProtocol *anotherProtocol;

val = [cursor readInt32];
val = [cursor readInt64];
anotherProtocol = [self protocolAtAddress:val];
if (anotherProtocol != nil) {
[protocol addProtocol:anotherProtocol];
Expand Down

0 comments on commit a4717bc

Please sign in to comment.