reverted string padding in cmd_seek

This commit is contained in:
deeso 2014-05-21 21:30:53 -05:00
parent ca4ec79bc0
commit f6d2c77a97

View File

@ -286,6 +286,6 @@ static int cmd_seek(void *data, const char *input) {
"| sr pc seek to register\n");
break;
}
} else r_cons_printf ("0x%08"PFMT64x"\n", core->offset);
} else r_cons_printf ("0x%"PFMT64x"\n", core->offset);
return 0;
}