Updated for WITH_GUI.

committer: mfx <mfx> 968542205 +0000
This commit is contained in:
Markus F.X.J. Oberhumer
2000-09-09 23:30:05 +00:00
parent a98c9a68dd
commit 557305cdec
+2
View File
@@ -255,8 +255,10 @@ void PackTos::fileInfo()
{ {
if (!readFileHeader()) if (!readFileHeader())
return; return;
#if !defined(WITH_GUI)
con_fprintf(stdout, " text: %d, data: %d, sym: %d, bss: %d, flags=0x%x\n", con_fprintf(stdout, " text: %d, data: %d, sym: %d, bss: %d, flags=0x%x\n",
(int)ih.fh_text, (int)ih.fh_data, (int)ih.fh_sym, (int)ih.fh_bss, (int)ih.fh_flag); (int)ih.fh_text, (int)ih.fh_data, (int)ih.fh_sym, (int)ih.fh_bss, (int)ih.fh_flag);
#endif /* !defined(WITH_GUI) */
} }