From 363a201ad2972826bda92251b5cb2f0ca1f437bf Mon Sep 17 00:00:00 2001 From: vsc Date: Mon, 21 Jan 2002 15:26:48 +0000 Subject: [PATCH] fix allocation misspelling git-svn-id: https://yap.svn.sf.net/svnroot/yap/trunk@313 b08c6af1-5177-4d33-ba66-4b1c6b8b522a --- C/alloc.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/C/alloc.c b/C/alloc.c index 0827e84e6..2f1766ac2 100644 --- a/C/alloc.c +++ b/C/alloc.c @@ -12,7 +12,7 @@ * Last rev: * * mods: * * comments: allocating space * -* version:$Id: alloc.c,v 1.10 2001-12-18 22:01:26 vsc Exp $ * +* version:$Id: alloc.c,v 1.11 2002-01-21 15:26:48 vsc Exp $ * *************************************************************************/ #ifdef SCCS static char SccsId[] = "%W% %G%"; @@ -853,7 +853,7 @@ ExtendWorkSpace(Int s) return(FALSE); } if ((CELL)ptr & MBIT) { - Error(SYSTEM_ERROR, TermNil, "memory at %p conflicts with MBIT %lx", ptr, NMBIT); + Error(SYSTEM_ERROR, TermNil, "memory at %p conflicts with MBIT %lx", ptr, MBIT); return(FALSE); } return TRUE;