summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorAlan Coopersmith <alan.coopersmith@oracle.com>2013-08-09 00:06:01 -0700
committerAlan Coopersmith <alan.coopersmith@oracle.com>2013-08-09 00:06:01 -0700
commit759bbd43f0fdc9a96ba1676d7830164bc9954be2 (patch)
tree99f94dc4abfe42247d0ff1de47282148a41b79ac /src
parent77ddd273239a629eeed7bd1d5b4509b1bd6d4e37 (diff)
downloadxorg-lib-libSM-759bbd43f0fdc9a96ba1676d7830164bc9954be2.tar.gz
Constify previous_id argument to SmcOpenConnection
Clears gcc warning of: sm_client.c: In function 'SmcOpenConnection': sm_client.c:199:13: warning: assignment discards 'const' qualifier from pointer target type [enabled by default] Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
Diffstat (limited to 'src')
-rw-r--r--src/sm_client.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/sm_client.c b/src/sm_client.c
index 3dd700e..ef1160b 100644
--- a/src/sm_client.c
+++ b/src/sm_client.c
@@ -52,7 +52,7 @@ SmcConn
SmcOpenConnection(char *networkIdsList, SmPointer context,
int xsmpMajorRev, int xsmpMinorRev,
unsigned long mask, SmcCallbacks *callbacks,
- char *previousId, char **clientIdRet,
+ const char *previousId, char **clientIdRet,
int errorLength, char *errorStringRet)
{
SmcConn smcConn;