Skip to content

Commit

Permalink
another fix for x86 build
Browse files Browse the repository at this point in the history
  • Loading branch information
rovo89 committed Sep 28, 2013
1 parent 2bef130 commit 7214b7e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion xposed.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -342,7 +342,7 @@ static void patchReturnTrue(void* function) {
else
replaceAsm(function, asmReturnTrueArm, sizeof(asmReturnTrueArm));
#else
char asmReturnTrueX86[] = { 0x31, 0xC0, 0x40, 0xC3 };
unsigned const char asmReturnTrueX86[] = { 0x31, 0xC0, 0x40, 0xC3 };
replaceAsm(function, asmReturnTrueX86, sizeof(asmReturnTrueX86));
#endif
}
Expand Down

0 comments on commit 7214b7e

Please sign in to comment.