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:
parent
9f58ef3a58
commit
199ebae564
|
@ -1178,7 +1178,7 @@ int default_flash_blank_check(struct flash_bank_s *bank)
|
|||
int i;
|
||||
int retval;
|
||||
int fast_check = 0;
|
||||
int blank;
|
||||
u32 blank;
|
||||
|
||||
if (bank->target->state != TARGET_HALTED)
|
||||
{
|
||||
|
|
|
@ -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
|
||||
|
|
|
@ -2636,7 +2636,7 @@ static int target_mem2array(Jim_Interp *interp, target_t *target, int argc, Jim_
|
|||
{
|
||||
long l;
|
||||
u32 width;
|
||||
u32 len;
|
||||
int len;
|
||||
u32 addr;
|
||||
u32 count;
|
||||
u32 v;
|
||||
|
@ -2818,7 +2818,7 @@ static int target_array2mem(Jim_Interp *interp, target_t *target, int argc, Jim_
|
|||
{
|
||||
long l;
|
||||
u32 width;
|
||||
u32 len;
|
||||
int len;
|
||||
u32 addr;
|
||||
u32 count;
|
||||
u32 v;
|
||||
|
|
Loading…
Reference in New Issue