Skip to content

Commit

Permalink
Removed tabs (radareorg#7652)
Browse files Browse the repository at this point in the history
  • Loading branch information
RKX1209 authored and radare committed Jun 1, 2017
1 parent 3dcd3b7 commit 49e9744
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions libr/debug/session.c
Original file line number Diff line number Diff line change
Expand Up @@ -19,10 +19,10 @@ R_API void r_debug_session_list(RDebug *dbg) {

r_list_foreach (dbg->sessions, iterse, session) {
count = 0;
dbg->cb_printf ("session:%2d\tat:0x%08"PFMT64x "\n", session->key.id, session->key.addr);
dbg->cb_printf ("session:%2d at:0x%08"PFMT64x "\n", session->key.id, session->key.addr);
r_list_foreach (session->memlist, itersn, diff) {
snap = diff->base;
dbg->cb_printf ("\t- %d 0x%08"PFMT64x " - 0x%08"PFMT64x " size: %d ",
dbg->cb_printf (" - %d 0x%08"PFMT64x " - 0x%08"PFMT64x " size: %d ",
count, snap->addr, snap->addr_end, snap->size);
dbg->cb_printf ("(pages: ");
r_list_foreach (diff->pages, iterpg, page) {
Expand Down

0 comments on commit 49e9744

Please sign in to comment.