Oops, didn't notice those type warnings...

This commit is contained in:
gwr 1996-01-31 17:20:39 +00:00
parent e5ece749b2
commit 6cc7bd528f
1 changed files with 3 additions and 3 deletions

View File

@ -1,4 +1,4 @@
/* $NetBSD: dvma.c,v 1.5 1996/01/29 23:41:05 gwr Exp $ */
/* $NetBSD: dvma.c,v 1.6 1996/01/31 17:20:39 gwr Exp $ */
/*
* Copyright (c) 1995 Gordon W. Ross
@ -55,7 +55,7 @@ extern void set_segmap __P((int, int));
#define SA_MAX_VA (SA_MIN_VA + DVMA_MAPLEN)
/* This points to the end of the free DVMA space. */
int dvma_end = DVMA_BASE + DVMA_MAPLEN;
u_int dvma_end = DVMA_BASE + DVMA_MAPLEN;
void
dvma_init()
@ -110,7 +110,7 @@ dvma_alloc(int len)
{
len = sun3_round_page(len);
dvma_end -= len;
return(dvma_end);
return((char*)dvma_end);
}
void