Skip to content

Commit

Permalink
stage
Browse files Browse the repository at this point in the history
  • Loading branch information
radare committed Sep 21, 2022
1 parent fed209d commit 774e034
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion libr/core/cmd_info.c
Original file line number Diff line number Diff line change
Expand Up @@ -298,7 +298,7 @@ static void r_core_file_info(RCore *core, PJ *pj, int mode) {
}
ut64 laddr = r_core_get_cur_laddr (core);
if (laddr && laddr != UT64_MAX) {
char *laddrs = sdb_itoa (laddr, NULL, 16);
char *laddrs = r_str_newf ("0x%08"PFMT64x, laddr);
pair ("laddr", laddrs);
free (laddrs);
}
Expand Down

0 comments on commit 774e034

Please sign in to comment.