summaryrefslogtreecommitdiff
path: root/src/helper/command.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/helper/command.c')
-rw-r--r--src/helper/command.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/helper/command.c b/src/helper/command.c
index 5d69ffb3..5f3c88dc 100644
--- a/src/helper/command.c
+++ b/src/helper/command.c
@@ -49,10 +49,10 @@ Jim_Interp *interp = NULL;
int run_command(command_context_t *context, command_t *c, char *words[], int num_words);
-static void tcl_output(void *privData, const char *file, int line, const char *function, const char *string)
+static void tcl_output(void *privData, const char *file, unsigned line,
+ const char *function, const char *string)
{
Jim_Obj *tclOutput = (Jim_Obj *)privData;
-
Jim_AppendString(interp, tclOutput, string, strlen(string));
}