Skip to content
Snippets Groups Projects
Commit b39f861b authored by Simon Marlow's avatar Simon Marlow
Browse files

[project @ 1998-05-21 09:44:40 by simonm]

missed one caddr_t.
parent 3ab6d935
No related merge requests found
......@@ -70,7 +70,7 @@ char * /*caddr_t*/ addr;
int size;
{
int pagesize = GETPAGESIZE();
char * middle = (caddr_t) (((W_) (addr + size / 2)) / pagesize * pagesize);
char * middle = (char *) (((W_) (addr + size / 2)) / pagesize * pagesize);
#if defined(cygwin32_TARGET_OS)
unsigned int old_prot;
#endif
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment