summary refs log tree commit diff stats
path: root/src/common/outbound.h
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/outbound.h
parenta86b03e939391f3567cc644800e1b13dceda1139 (diff)
Fixed some more signed-unsigned-comparison warnings.
Diffstat (limited to 'src/common/outbound.h')
-rw-r--r--src/common/outbound.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/common/outbound.h b/src/common/outbound.h
index b9fe6331..490a58ca 100644
--- a/src/common/outbound.h
+++ b/src/common/outbound.h
@@ -25,7 +25,7 @@
 extern const struct commands xc_cmds[];
 extern GSList *menu_list;
 
-int auto_insert (char *dest, int destlen, unsigned char *src, char *word[], char *word_eol[],
+int auto_insert (char *dest, gsize destlen, unsigned char *src, char *word[], char *word_eol[],
 				 char *a, char *c, char *d, char *e, char *h, char *n, char *s, char *u);
 char *command_insert_vars (session *sess, char *cmd);
 int handle_command (session *sess, char *cmd, int check_spch);