Commit 53e89174 authored by Dmitry Timoshkov's avatar Dmitry Timoshkov Committed by Alexandre Julliard

winedump: Make output of dump_data fit into 80 columns.

parent 04681470
......@@ -145,7 +145,7 @@ static void pdb_exit(struct pdb_reader* reader)
size = pdb_get_file_size(reader, i);
printf("File --unused-- #%d (%x)\n", i, size);
dump_data(file, size, "\t");
dump_data(file, size, " ");
free((char*)file);
}
#endif
......@@ -204,7 +204,7 @@ static void pdb_dump_symbols(struct pdb_reader* reader)
printf("\t----------offsets------------\n");
src = (const BYTE*)((const char*)symbols + sizeof(PDB_SYMBOLS) + symbols->module_size);
dump_data(src, symbols->offset_size, "\t\t");
dump_data(src, symbols->offset_size, " ");
}
if (symbols->srcmodule_size)
......@@ -399,7 +399,7 @@ static void pdb_dump_symbols(struct pdb_reader* reader)
/* what's that part ??? */
if (0)
dump_data(modimage + symbol_size + lineno_size, total_size - (symbol_size + lineno_size), "\t\t\t");
dump_data(modimage + symbol_size + lineno_size, total_size - (symbol_size + lineno_size), " ");
free((char*)modimage);
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment