summaryrefslogtreecommitdiff
path: root/lib
diff options
context:
space:
mode:
Diffstat (limited to 'lib')
-rw-r--r--lib/Input.cc6
1 files changed, 4 insertions, 2 deletions
diff --git a/lib/Input.cc b/lib/Input.cc
index c27e168..15d9a38 100644
--- a/lib/Input.cc
+++ b/lib/Input.cc
@@ -17,7 +17,7 @@
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
*/
-/* $Id: Input.cc,v 1.49 2004-11-27 21:46:04 pixel Exp $ */
+/* $Id: Input.cc,v 1.50 2004-12-27 18:48:48 pixel Exp $ */
#include <stdio.h>
#include <string.h>
@@ -322,7 +322,9 @@ void Archive::create() throw (GeneralException) {
archive->seek(240, SEEK_CUR);
for (i = 0; i < sections; i++) {
archive->read(&PEsection, sizeof(PEsection));
- printm(M_INFO, "Section: %s\n", PEsection.name);
+#ifdef DEBUG
+ printm(M_INFO, "Section: %s\n", PEsection.name);
+#endif
ptr = PEsection.Pointer + PEsection.SizeOf;
if (ptr > maxptr)
maxptr = ptr;