Skip to content

Commit

Permalink
Not needed
Browse files Browse the repository at this point in the history
  • Loading branch information
AlexanderOMara committed Jan 20, 2025
1 parent cbd29bc commit 6d1c950
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion macho/architecture.ts
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,7 @@ export class Architecture {
* @returns Masked subtype ID.
*/
public cpuSubtype(): number {
return (this.second & ~CPU_SUBTYPE_MASK) >>> 0;
return this.second & ~CPU_SUBTYPE_MASK;
}

/**
Expand Down

0 comments on commit 6d1c950

Please sign in to comment.