diff options
author | pixel <pixel> | 2004-12-27 18:48:48 +0000 |
---|---|---|
committer | pixel <pixel> | 2004-12-27 18:48:48 +0000 |
commit | 145b69a74f91e33b5ae413eb9bc6c5402d7ca8f6 (patch) | |
tree | 7d9849dd419be419711608f512d02e049e21cd26 /lib | |
parent | 248102902168025dbdd1ee618ade6bd0d85a5723 (diff) |
Hey, this is a debug message.
Diffstat (limited to 'lib')
-rw-r--r-- | lib/Input.cc | 6 |
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; |