diff options
author | Sébastien Helleu <flashcode@flashtux.org> | 2020-06-07 11:07:48 +0200 |
---|---|---|
committer | Sébastien Helleu <flashcode@flashtux.org> | 2020-06-07 11:07:48 +0200 |
commit | 08a00739f25e57c19039289448015c354d472369 (patch) | |
tree | e6658eafa6f57a47fc1f50c593f0e31b921d6fc0 /src | |
parent | 297a140beac745d68149c4d74fefbddc727264b6 (diff) | |
download | weechat-08a00739f25e57c19039289448015c354d472369.zip |
guile: fix compiler warning (issue #1514)
Diffstat (limited to 'src')
-rw-r--r-- | src/plugins/guile/weechat-guile.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/plugins/guile/weechat-guile.c b/src/plugins/guile/weechat-guile.c index d1ff8b8fc..4b6406e48 100644 --- a/src/plugins/guile/weechat-guile.c +++ b/src/plugins/guile/weechat-guile.c @@ -1163,7 +1163,7 @@ size_t weechat_guile_port_write (SCM port, SCM src, size_t start, size_t count) { char *data2, *ptr_data, *ptr_newline; - const char *data; + const signed char *data; /* make C compiler happy */ (void) port; |