summaryrefslogtreecommitdiff
path: root/lib/Input.cc
diff options
context:
space:
mode:
authorpixel <pixel>2004-12-27 18:48:48 +0000
committerpixel <pixel>2004-12-27 18:48:48 +0000
commit145b69a74f91e33b5ae413eb9bc6c5402d7ca8f6 (patch)
tree7d9849dd419be419711608f512d02e049e21cd26 /lib/Input.cc
parent248102902168025dbdd1ee618ade6bd0d85a5723 (diff)
Hey, this is a debug message.
Diffstat (limited to 'lib/Input.cc')
-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;