diff options
author | Alan Coopersmith <alan.coopersmith@oracle.com> | 2011-11-19 11:33:30 -0800 |
---|---|---|
committer | Alan Coopersmith <alan.coopersmith@oracle.com> | 2011-12-09 17:37:09 -0800 |
commit | 4af9e4a71f7c07da86ef1940cba69e92b11ba337 (patch) | |
tree | 9c067a3a197caebd4759d84edf280442b51db0bc /include/X11/SM | |
parent | e77dd2e4bc8227ebdab70b4233cb33ed690fa264 (diff) |
SmsInitialize: Mark vendor & release args as const char *
Needed to fix gcc -Wwrite-strings arguments in callers such as xsm.
Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
Reviewed-by: James Cloos <cloos@jhcloos.com>
Diffstat (limited to 'include/X11/SM')
-rw-r--r-- | include/X11/SM/SMlib.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/include/X11/SM/SMlib.h b/include/X11/SM/SMlib.h index fb1166b..9645295 100644 --- a/include/X11/SM/SMlib.h +++ b/include/X11/SM/SMlib.h @@ -445,8 +445,8 @@ extern IceConn SmcGetIceConnection ( ); extern Status SmsInitialize ( - char * /* vendor */, - char * /* release */, + const char * /* vendor */, + const char * /* release */, SmsNewClientProc /* newClientProc */, SmPointer /* managerData */, IceHostBasedAuthProc /* hostBasedAuthProc */, |