diff options
author | Alan Coopersmith <alan.coopersmith@oracle.com> | 2011-11-09 21:55:17 -0800 |
---|---|---|
committer | Alan Coopersmith <alan.coopersmith@oracle.com> | 2011-11-11 19:59:59 -0800 |
commit | 902a52ea9d7b6e6f56f7023009859072854a0fc7 (patch) | |
tree | 792979e7b747a1ada6d2641a8aa75246c0db793b /doc | |
parent | 9ff1f97e46903f8f83363f07cf021989bfa6a9f0 (diff) |
constify arguments to IceGetAuthFileEntry
Needed to clear gcc -Wwrite-strings warnings in callers
Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
Reviewed-by: Jeremy Huddleston <jeremyhu@apple.com>
Diffstat (limited to 'doc')
-rw-r--r-- | doc/ICElib.xml | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/doc/ICElib.xml b/doc/ICElib.xml index 694afcd..60d9dbe 100644 --- a/doc/ICElib.xml +++ b/doc/ICElib.xml @@ -4430,9 +4430,9 @@ protocol_name/network_id/auth_name tuple, use <funcsynopsis id='IceGetAuthFileEntry'> <funcprototype> <funcdef>IceAuthFileEntry<function> *IceGetAuthFileEntry</function></funcdef> - <paramdef>char<parameter> *protocol_name</parameter></paramdef> - <paramdef>char<parameter> *network_id</parameter></paramdef> - <paramdef>char<parameter> *auth_name</parameter></paramdef> + <paramdef>const char *<parameter>protocol_name</parameter></paramdef> + <paramdef>const char *<parameter>network_id</parameter></paramdef> + <paramdef>const char *<parameter>auth_name</parameter></paramdef> </funcprototype> </funcsynopsis> |