Fix dead code from core/bin/pdb
This commit is contained in:
parent
48422b07db
commit
d375dd21ee
1 changed files with 4 additions and 4 deletions
|
|
@ -499,11 +499,11 @@ static int bin_pdb (RCore *core, ut64 baddr, int mode) {
|
|||
|
||||
pdb.print_types (&pdb, mode);
|
||||
|
||||
if (mode == R_CORE_BIN_JSON)
|
||||
r_cons_printf(",");
|
||||
if (mode == 'j')
|
||||
r_cons_printf (",");
|
||||
pdb.print_gvars (&pdb, baddr, mode);
|
||||
if (mode == R_CORE_BIN_JSON)
|
||||
r_cons_printf("]");
|
||||
if (mode == 'j')
|
||||
r_cons_printf ("]");
|
||||
pdb.finish_pdb_parse (&pdb);
|
||||
|
||||
return R_TRUE;
|
||||
|
|
|
|||
Loading…
Reference in a new issue