Skip to content

Commit

Permalink
small fix
Browse files Browse the repository at this point in the history
  • Loading branch information
joamag committed Jan 6, 2018
1 parent 98d2908 commit edcdfc2
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/mingus/mingus.c
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ void mingus_eval(struct state_t *state) {
switch(instruction->opcode) {
/* in case it's the halt instruction */
case HALT:
V_DEBUG_F("halt\n");
V_DEBUG("halt\n");

/* verifies the condition for the instruction
execution without any problem */
Expand Down Expand Up @@ -273,7 +273,7 @@ void mingus_eval(struct state_t *state) {

/* in case it's the ret instruction */
case RET:
V_DEBUG_F("ret\n");
V_DEBUG("ret\n");

state->pc = MINGUS_CALL_POP(state);
MINGUS_CALL_POP(state);
Expand Down

0 comments on commit edcdfc2

Please sign in to comment.