Skip to content

Commit

Permalink
fi
Browse files Browse the repository at this point in the history
  • Loading branch information
radare committed Feb 25, 2024
1 parent 870619d commit 59249b9
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion libr/core/cmd_print.inc.c
Original file line number Diff line number Diff line change
Expand Up @@ -6303,6 +6303,8 @@ static int cmd_print(void *data, const char *input) {
free (fmt);
}
free (offs);
}
}
#else
core->offset = off;
// "pd--" // context disasm
Expand All @@ -6317,7 +6319,6 @@ static int cmd_print(void *data, const char *input) {
fmt = r_str_newf ("d %"PFMT64d, -1 * off);
} else {
fmt = r_str_newf ("d %s", input + 2);
#endif
}
if (fmt) {
cmd_print (core, fmt);
Expand All @@ -6327,6 +6328,7 @@ static int cmd_print(void *data, const char *input) {
}
free (offs);
}
#endif
ret = 0;
goto beach;
}
Expand Down

0 comments on commit 59249b9

Please sign in to comment.