Fix offset in anj (#8924)

This commit is contained in:
Florian Märkl 2017-11-30 22:12:57 +01:00 committed by radare
parent f23adae6f4
commit fbfa9d9330

View File

@ -844,7 +844,7 @@ static int cmd_an(RCore *core, bool use_json, const char *name)
r_cons_printf ("0x%" PFMT64x "\n", tgt_addr);
} else {
r_cons_printf ("{\"type\":\"address\",\"offset\":"
"%08" PFMT64d "}", tgt_addr);
"%" PFMT64d "}", tgt_addr);
}
}
}