diff options
author | Marin Ramesa <mpr@hi.t-com.hr> | 2013-12-16 23:55:14 +0100 |
---|---|---|
committer | Samuel Thibault <samuel.thibault@ens-lyon.org> | 2013-12-17 19:03:05 +0100 |
commit | ece37d66ae394a0d783f3cba8a71d7b61735b0aa (patch) | |
tree | 52828034b2f55eba0612b47d03147398201d3a0f /ipc/mach_rpc.c | |
parent | 1a81c796689a01b00bc5aea0b3bd3fd672530798 (diff) | |
download | gnumach-ece37d66ae394a0d783f3cba8a71d7b61735b0aa.tar.gz gnumach-ece37d66ae394a0d783f3cba8a71d7b61735b0aa.tar.bz2 gnumach-ece37d66ae394a0d783f3cba8a71d7b61735b0aa.zip |
ipc: qualify pointers whose dereferenced values are constant with const
Diffstat (limited to 'ipc/mach_rpc.c')
-rw-r--r-- | ipc/mach_rpc.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ipc/mach_rpc.c b/ipc/mach_rpc.c index 643d0fbf..e056a7fd 100644 --- a/ipc/mach_rpc.c +++ b/ipc/mach_rpc.c @@ -141,7 +141,7 @@ mach_port_rpc_copy(portp, sact, dact) } kern_return_t -mach_port_rpc_sig(ipc_space_t space, char *name, char *buffer, unsigned int buflen) +mach_port_rpc_sig(const ipc_space_t space, const char *name, const char *buffer, unsigned int buflen) { return KERN_FAILURE; } |