summaryrefslogtreecommitdiffstats
path: root/bin/csh/alloc.c
diff options
context:
space:
mode:
Diffstat (limited to 'bin/csh/alloc.c')
-rw-r--r--bin/csh/alloc.c5
1 files changed, 3 insertions, 2 deletions
diff --git a/bin/csh/alloc.c b/bin/csh/alloc.c
index b0a7a1e..aa4e74c 100644
--- a/bin/csh/alloc.c
+++ b/bin/csh/alloc.c
@@ -30,7 +30,7 @@
* OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
* SUCH DAMAGE.
*
- * $Id$
+ * $Id: alloc.c,v 1.2 1994/09/24 02:53:45 davidg Exp $
*/
#ifndef lint
@@ -122,5 +122,6 @@ showall(v, t)
{
memtop = (char *) sbrk(0);
(void) fprintf(cshout, "Allocated memory from 0x%lx to 0x%lx (%ld).\n",
- (unsigned long) membot, (unsigned long) memtop, memtop - membot);
+ (unsigned long) membot, (unsigned long) memtop,
+ (unsigned long) (memtop - membot));
}
OpenPOWER on IntegriCloud