From df9b12695f4ede8144491d257ea236cdbca0a15c Mon Sep 17 00:00:00 2001
From: Zachary T Welch <zw@superlucidity.net>
Date: Sun, 15 Nov 2009 04:05:33 -0800
Subject: [PATCH] use Jim_CmdProc in jim_register

The jim_register command just needed to use the type defined by jim.h.
---
 src/helper/command.c | 3 ++-
 src/helper/command.h | 3 ++-
 2 files changed, 4 insertions(+), 2 deletions(-)

diff --git a/src/helper/command.c b/src/helper/command.c
index 41af03567..7edd585f0 100644
--- a/src/helper/command.c
+++ b/src/helper/command.c
@@ -869,7 +869,8 @@ void process_jim_events(void)
 #endif
 }
 
-void register_jim(struct command_context *cmd_ctx, const char *name, int (*cmd)(Jim_Interp *interp, int argc, Jim_Obj *const *argv), const char *help)
+void register_jim(struct command_context *cmd_ctx, const char *name,
+		Jim_CmdProc cmd, const char *help)
 {
 	Jim_CreateCommand(interp, name, cmd, NULL, NULL);
 
diff --git a/src/helper/command.h b/src/helper/command.h
index 94d981654..79e57f5ab 100644
--- a/src/helper/command.h
+++ b/src/helper/command.h
@@ -190,7 +190,8 @@ extern int fast_and_dangerous;
 
 extern Jim_Interp *interp;
 
-void register_jim(struct command_context *context, const char *name, int (*cmd)(Jim_Interp *interp, int argc, Jim_Obj *const *argv), const char *help);
+void register_jim(struct command_context *context, const char *name,
+		Jim_CmdProc cmd, const char *help);
 
 long jim_global_long(const char *variable);
 
-- 
GitLab