diff options
author | Pavel Roskin <plroskin@gmail.com> | 2016-06-21 16:30:17 -0700 |
---|---|---|
committer | Pavel Roskin <plroskin@gmail.com> | 2016-07-08 04:29:42 +0000 |
commit | aeeb3d2c2e26677758a64db496c86020f99d2f1a (patch) | |
tree | 3337017e28744427743d447d4735c00537783321 /sesman/chansrv/clipboard_common.h | |
parent | a680d46edf747ec17456b6b8e69c95bc4e4407cb (diff) | |
download | xrdp-proprietary-aeeb3d2c2e26677758a64db496c86020f99d2f1a.tar.gz xrdp-proprietary-aeeb3d2c2e26677758a64db496c86020f99d2f1a.zip |
Fix warnings detected by -Wwrite-strings
Diffstat (limited to 'sesman/chansrv/clipboard_common.h')
-rw-r--r-- | sesman/chansrv/clipboard_common.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/sesman/chansrv/clipboard_common.h b/sesman/chansrv/clipboard_common.h index 5a74de66..1944b760 100644 --- a/sesman/chansrv/clipboard_common.h +++ b/sesman/chansrv/clipboard_common.h @@ -127,7 +127,8 @@ struct clip_file_desc /* CLIPRDR_FILEDESCRIPTOR */ char cFileName[256]; }; -int APP_CC clipboard_out_unicode(struct stream *s, char *text, int num_chars); +int APP_CC clipboard_out_unicode(struct stream *s, const char *text, + int num_chars); int APP_CC clipboard_in_unicode(struct stream *s, char *text, int *num_chars); #endif |