forked from auracaster/openocd
Rick Altherr <kc8apf@kc8apf.net> - fix warnings
git-svn-id: svn://svn.berlios.de/openocd/trunk@1126 b42882b7-edfa-0310-969c-e2dbd0fdcd60
This commit is contained in:
@@ -653,7 +653,7 @@ static int jim_capture(Jim_Interp *interp, int argc, Jim_Obj *const *argv)
|
||||
command_context_t* command_init()
|
||||
{
|
||||
command_context_t* context = malloc(sizeof(command_context_t));
|
||||
extern unsigned const char startup_tcl[];
|
||||
extern const char startup_tcl[];
|
||||
|
||||
context->mode = COMMAND_EXEC;
|
||||
context->commands = NULL;
|
||||
|
||||
@@ -524,9 +524,7 @@ static int JimELAfterCommand(Jim_Interp *interp, int argc,
|
||||
|
||||
/* This extension is not dynamically loaded, instead it's linked statically,
|
||||
which is why we shouldn't use the unspecific 'Jim_OnLoad' name */
|
||||
#define Jim_OnLoad Jim_EventLoopOnLoad
|
||||
|
||||
int Jim_OnLoad(Jim_Interp *interp)
|
||||
int Jim_EventLoopOnLoad(Jim_Interp *interp)
|
||||
{
|
||||
Jim_EventLoop *eventLoop;
|
||||
|
||||
|
||||
@@ -66,6 +66,8 @@ typedef void Jim_EventFinalizerProc(Jim_Interp *interp, void *clientData);
|
||||
#define JIM_API(x) x
|
||||
#define JIM_STATIC
|
||||
|
||||
JIM_STATIC int Jim_EventLoopOnLoad(Jim_Interp *interp);
|
||||
|
||||
/* --- POSIX version of Jim_ProcessEvents, for now the only available --- */
|
||||
#define JIM_FILE_EVENTS 1
|
||||
#define JIM_TIME_EVENTS 2
|
||||
|
||||
Reference in New Issue
Block a user