Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
  • Loading branch information
tandasat authored and aquynh committed May 7, 2016
1 parent 6d332dc commit 4d36deb
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion cs.c
Original file line number Diff line number Diff line change
Expand Up @@ -237,7 +237,7 @@ cs_err cs_open(cs_arch arch, cs_mode mode, csh *handle)
ud->errnum = CS_ERR_OK;
ud->arch = arch;
ud->mode = mode;
ud->big_endian = mode & CS_MODE_BIG_ENDIAN;
ud->big_endian = (mode & CS_MODE_BIG_ENDIAN) != 0;
// by default, do not break instruction into details
ud->detail = CS_OPT_OFF;

Expand Down

0 comments on commit 4d36deb

Please sign in to comment.