diff options
| author | pixel <pixel> | 2003-03-19 13:49:22 +0000 | 
|---|---|---|
| committer | pixel <pixel> | 2003-03-19 13:49:22 +0000 | 
| commit | ab910aaa8c5e6afc05d0a2e17022565d1de92f67 (patch) | |
| tree | ab3553c90f78d804c1a4735f19019df63f583ff9 /lib | |
| parent | b9dca6ae1b5b0dabd7800f077b354edd3475190b (diff) | |
Oops... ok, gettext doesn't suck. I do.
Diffstat (limited to 'lib')
| -rw-r--r-- | lib/Exceptions.cc | 4 | 
1 files changed, 2 insertions, 2 deletions
| diff --git a/lib/Exceptions.cc b/lib/Exceptions.cc index 9ffa572..7a068aa 100644 --- a/lib/Exceptions.cc +++ b/lib/Exceptions.cc @@ -103,7 +103,7 @@ void * xmalloc(size_t s) throw (GeneralException) {  	throw MemoryException(s);      }  #ifdef DEBUG -    Base::printm(M_BARE, String(_("Allocating %i bytes of memory, got it at %p\n")), s, r); +//    Base::printm(M_BARE, String(_("Allocating %i bytes of memory, got it at %p\n")), s, r);  #endif      memset(r, 0, s); @@ -135,7 +135,7 @@ void xfree(void *& p) {  void xfree(char *& p) {  #ifdef DEBUG -    Base::printm(M_BARE, String(_("Freeing pointer at %p\n")), p); +//    Base::printm(M_BARE, String(_("Freeing pointer at %p\n")), p);  #endif      if (p) {  	::free(p); | 
