Index: redboot/current/ChangeLog =================================================================== RCS file: /cvs/ecos/ecos/packages/redboot/current/ChangeLog,v retrieving revision 1.161 diff -u -r1.161 ChangeLog --- redboot/current/ChangeLog 13 Nov 2003 15:48:01 -0000 1.161 +++ redboot/current/ChangeLog 20 Nov 2003 16:36:05 -0000 @@ -1,3 +1,7 @@ +2002-11-20 Jani Monoses + + * src/flash.c: flash_init() no longer takes three args. + 2003-11-13 Gary Thomas * src/main.c (do_go): Need to stop catching exceptions when running a Index: redboot/current/src/flash.c =================================================================== RCS file: /cvs/ecos/ecos/packages/redboot/current/src/flash.c,v retrieving revision 1.60 diff -u -r1.60 flash.c --- redboot/current/src/flash.c 7 Nov 2003 17:42:11 -0000 1.60 +++ redboot/current/src/flash.c 20 Nov 2003 16:36:11 -0000 @@ -1319,8 +1319,7 @@ if (!__flash_init) { __flash_init = 1; - if ((stat = flash_init((void *)(workspace_end-FLASH_MIN_WORKSPACE), - FLASH_MIN_WORKSPACE, diag_printf)) != 0) { + if ((stat = flash_init(diag_printf)) != 0) { diag_printf("FLASH: driver init failed: %s\n", flash_errmsg(stat)); return false; }