summaryrefslogtreecommitdiffstats
path: root/mc/mc.c
diff options
context:
space:
mode:
authorPavel Roskin <plroskin@gmail.com>2016-11-20 09:55:32 -0800
committerJay Sorg <jay.sorg@gmail.com>2017-01-11 11:59:11 -0800
commitb8ed23daab023e1468b7ae98ffa7bd06176b1404 (patch)
tree7b1c928a28bbfd0cc7636ac364d8ffbe3882d85c /mc/mc.c
parenta959a9f85171af2915b2909fe070b2029e8da6fe (diff)
downloadxrdp-proprietary-b8ed23daab023e1468b7ae98ffa7bd06176b1404.tar.gz
xrdp-proprietary-b8ed23daab023e1468b7ae98ffa7bd06176b1404.zip
Constify the value argument to mod_set_param
Diffstat (limited to 'mc/mc.c')
-rw-r--r--mc/mc.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/mc/mc.c b/mc/mc.c
index 3e0909d4..71d2d9c0 100644
--- a/mc/mc.c
+++ b/mc/mc.c
@@ -75,7 +75,7 @@ lib_mod_end(struct mod *mod)
/******************************************************************************/
/* return error */
int DEFAULT_CC
-lib_mod_set_param(struct mod *mod, const char *name, char *value)
+lib_mod_set_param(struct mod *mod, const char *name, const char *value)
{
return 0;
}