diff options
author | pixel <pixel> | 2004-05-03 13:04:37 +0000 |
---|---|---|
committer | pixel <pixel> | 2004-05-03 13:04:37 +0000 |
commit | 10d0c8f54d7f614fa8705590c9f86698cc6cb7bf (patch) | |
tree | a5ba8ca47fe3736a0ac0ae7aa733242dde4c1510 /lib | |
parent | e207a267a9e1224c0e7aaa3211e1eee739b3b38f (diff) |
Debug message ripped out
Diffstat (limited to 'lib')
-rw-r--r-- | lib/Input.cc | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/lib/Input.cc b/lib/Input.cc index cf44385..f8762d9 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.43 2004-04-30 08:21:36 pixel Exp $ */ +/* $Id: Input.cc,v 1.44 2004-05-03 13:04:37 pixel Exp $ */ #include <stdio.h> #include <string.h> @@ -95,7 +95,9 @@ Input::Input(const String & no) throw (GeneralException) : #endif if (GetHandle() < 0) { +#ifdef DEBUG printm(M_BARE, "Got handle: %i opening file " + no + "\n", GetHandle()); +#endif throw IOGeneral(String(_("Error opening file ")) + no + _(" for reading: ") + strerror(errno)); } |