diff options
author | pixel <pixel> | 2004-12-12 23:01:08 +0000 |
---|---|---|
committer | pixel <pixel> | 2004-12-12 23:01:08 +0000 |
commit | c35dc83455456e072b46a7de47ca6ac4d81ae37b (patch) | |
tree | 8e1959e0ddb21d664b53537df0d04e3daf97c631 /lib/Exceptions.cc | |
parent | 343b79939ec69483a478ace5ab402463523f8e83 (diff) |
Fixing ldirlib for compilation
Diffstat (limited to 'lib/Exceptions.cc')
-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 2633902..39869db 100644 --- a/lib/Exceptions.cc +++ b/lib/Exceptions.cc @@ -17,7 +17,7 @@ * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */ -/* $Id: Exceptions.cc,v 1.35 2004-11-27 21:46:04 pixel Exp $ */ +/* $Id: Exceptions.cc,v 1.36 2004-12-12 23:01:08 pixel Exp $ */ #include <string.h> #include <errno.h> @@ -129,7 +129,7 @@ void * xmalloc(size_t s) throw (GeneralException) { } if (!(r = (char *) ::malloc(s))) { - throw MemoryException(s); + throw MemoryException(s); } #ifdef DEBUG // Base::printm(M_BARE, String(_("Allocating %i bytes of memory, got it at %p\n")), s, r); |