fix some compiler warnings.

This commit is contained in:
Ben Gras 2007-04-02 15:10:07 +00:00
parent 647d1496f3
commit 85198a280c
3 changed files with 5 additions and 4 deletions

View file

@ -13,7 +13,7 @@ struct mem_map *map_ptr;
m.PR_ENDPT = parent; m.PR_ENDPT = parent;
m.PR_SLOT = child; m.PR_SLOT = child;
m.PR_MEM_PTR = map_ptr; m.PR_MEM_PTR = (char *) map_ptr;
r = _taskcall(SYSTASK, SYS_FORK, &m); r = _taskcall(SYSTASK, SYS_FORK, &m);
*child_endpoint = m.PR_ENDPT; *child_endpoint = m.PR_ENDPT;
return r; return r;

View file

@ -9,7 +9,7 @@ PUBLIC int sys_vsafecopy(struct vscp_vec *vec, int els)
message copy_mess; message copy_mess;
copy_mess.VSCP_VEC_ADDR = vec; copy_mess.VSCP_VEC_ADDR = (char *) vec;
copy_mess.VSCP_VEC_SIZE = els; copy_mess.VSCP_VEC_SIZE = els;
return(_taskcall(SYSTASK, SYS_VSAFECOPY, &copy_mess)); return(_taskcall(SYSTASK, SYS_VSAFECOPY, &copy_mess));

View file

@ -48,7 +48,8 @@ int c;
* print buffer forever. (So buffer can't be on stack!) * print buffer forever. (So buffer can't be on stack!)
*/ */
for(p = 0; procs[p] != NONE; p++) { for(p = 0; procs[p] != NONE; p++) {
printgrants[p] = cpf_grant_direct(procs[p], print_buf, printgrants[p] = cpf_grant_direct(procs[p],
(vir_bytes) print_buf,
sizeof(print_buf), CPF_READ); sizeof(print_buf), CPF_READ);
} }
} }
@ -58,7 +59,7 @@ int c;
m.DIAG_BUF_COUNT = buf_count; m.DIAG_BUF_COUNT = buf_count;
if(GRANT_VALID(printgrants[p])) { if(GRANT_VALID(printgrants[p])) {
m.m_type = DIAGNOSTICS_S; m.m_type = DIAGNOSTICS_S;
m.DIAG_PRINT_BUF_G = printgrants[p]; m.DIAG_PRINT_BUF_G = (char *) printgrants[p];
} else { } else {
m.m_type = DIAGNOSTICS; m.m_type = DIAGNOSTICS;
m.DIAG_PRINT_BUF_G = print_buf; m.DIAG_PRINT_BUF_G = print_buf;