From ece37d66ae394a0d783f3cba8a71d7b61735b0aa Mon Sep 17 00:00:00 2001 From: Marin Ramesa Date: Mon, 16 Dec 2013 23:55:14 +0100 Subject: ipc: qualify pointers whose dereferenced values are constant with const --- ipc/ipc_port.c | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'ipc/ipc_port.c') diff --git a/ipc/ipc_port.c b/ipc/ipc_port.c index 99a6ad46..d4ade8e1 100644 --- a/ipc/ipc_port.c +++ b/ipc/ipc_port.c @@ -275,9 +275,9 @@ ipc_port_dncancel( void ipc_port_pdrequest( - ipc_port_t port, - ipc_port_t notify, - ipc_port_t *previousp) + ipc_port_t port, + const ipc_port_t notify, + ipc_port_t *previousp) { ipc_port_t previous; @@ -1212,7 +1212,7 @@ ipc_port_dealloc_special( void ipc_port_print(port) - ipc_port_t port; + const ipc_port_t port; { printf("port 0x%x\n", port); -- cgit v1.2.3