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:
oharboe 2008-11-03 07:22:14 +00:00
parent 9f58ef3a58
commit 199ebae564
5 changed files with 7 additions and 7 deletions

View File

@ -1178,7 +1178,7 @@ int default_flash_blank_check(struct flash_bank_s *bank)
int i; int i;
int retval; int retval;
int fast_check = 0; int fast_check = 0;
int blank; u32 blank;
if (bank->target->state != TARGET_HALTED) if (bank->target->state != TARGET_HALTED)
{ {

View File

@ -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* command_init()
{ {
command_context_t* context = malloc(sizeof(command_context_t)); 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->mode = COMMAND_EXEC;
context->commands = NULL; context->commands = NULL;

View File

@ -524,9 +524,7 @@ static int JimELAfterCommand(Jim_Interp *interp, int argc,
/* This extension is not dynamically loaded, instead it's linked statically, /* This extension is not dynamically loaded, instead it's linked statically,
which is why we shouldn't use the unspecific 'Jim_OnLoad' name */ which is why we shouldn't use the unspecific 'Jim_OnLoad' name */
#define Jim_OnLoad Jim_EventLoopOnLoad int Jim_EventLoopOnLoad(Jim_Interp *interp)
int Jim_OnLoad(Jim_Interp *interp)
{ {
Jim_EventLoop *eventLoop; Jim_EventLoop *eventLoop;

View File

@ -66,6 +66,8 @@ typedef void Jim_EventFinalizerProc(Jim_Interp *interp, void *clientData);
#define JIM_API(x) x #define JIM_API(x) x
#define JIM_STATIC #define JIM_STATIC
JIM_STATIC int Jim_EventLoopOnLoad(Jim_Interp *interp);
/* --- POSIX version of Jim_ProcessEvents, for now the only available --- */ /* --- POSIX version of Jim_ProcessEvents, for now the only available --- */
#define JIM_FILE_EVENTS 1 #define JIM_FILE_EVENTS 1
#define JIM_TIME_EVENTS 2 #define JIM_TIME_EVENTS 2

View File

@ -2636,7 +2636,7 @@ static int target_mem2array(Jim_Interp *interp, target_t *target, int argc, Jim_
{ {
long l; long l;
u32 width; u32 width;
u32 len; int len;
u32 addr; u32 addr;
u32 count; u32 count;
u32 v; u32 v;
@ -2818,7 +2818,7 @@ static int target_array2mem(Jim_Interp *interp, target_t *target, int argc, Jim_
{ {
long l; long l;
u32 width; u32 width;
u32 len; int len;
u32 addr; u32 addr;
u32 count; u32 count;
u32 v; u32 v;