summary refs log tree commit diff stats
path: root/src/common/plugin.c
diff options
context:
space:
mode:
authorArnavion <arnavion@gmail.com>2014-12-15 10:25:28 -0800
committerArnavion <arnavion@gmail.com>2014-12-15 10:25:28 -0800
commitec7a0d6e13f0fa66299cab7fdad8e639e01ee9dd (patch)
tree9cd90ef8d8411f0278b69ac3155be60b7ff99643 /src/common/plugin.c
parenta86b03e939391f3567cc644800e1b13dceda1139 (diff)
Fixed some more signed-unsigned-comparison warnings.
Diffstat (limited to 'src/common/plugin.c')
-rw-r--r--src/common/plugin.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/common/plugin.c b/src/common/plugin.c
index fbef743a..367e3230 100644
--- a/src/common/plugin.c
+++ b/src/common/plugin.c
@@ -989,7 +989,7 @@ void
 hexchat_command (hexchat_plugin *ph, const char *command)
 {
 	char *conv;
-	int len = -1;
+	gssize len = -1;
 
 	if (!is_session (ph->context))
 	{