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/ipc_object.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/ipc_object.c')
-rw-r--r-- | ipc/ipc_object.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ipc/ipc_object.c b/ipc/ipc_object.c index b8cae8f5..982bd4e1 100644 --- a/ipc/ipc_object.c +++ b/ipc/ipc_object.c @@ -1007,7 +1007,7 @@ char *ikot_print_array[IKOT_MAX_TYPE] = { void ipc_object_print( - ipc_object_t object) + const ipc_object_t object) { int kotype; |