Skip to content

Commit

Permalink
code style
Browse files Browse the repository at this point in the history
  • Loading branch information
aquynh committed Jun 2, 2018
1 parent c3e59fe commit 82d2efd
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions MCInst.c
Original file line number Diff line number Diff line change
Expand Up @@ -16,11 +16,12 @@

void MCInst_Init(MCInst *inst)
{
int i;
unsigned int i;

for (i = 0; i < 48; i++){
for (i = 0; i < 48; i++) {
inst->Operands[i].Kind = kInvalid;
}

inst->Opcode = 0;
inst->OpcodePub = 0;
inst->size = 0;
Expand Down

0 comments on commit 82d2efd

Please sign in to comment.