target: change working area free data type

We only use the struct working_area member 'free' as a
true/false type so might as well use a bool data type.

Signed-off-by: Spencer Oliver <ntfreak@users.sourceforge.net>
This commit is contained in:
Spencer Oliver
2010-12-24 11:17:09 +00:00
parent e8eb5bbc04
commit dc1c5a7500
2 changed files with 3 additions and 3 deletions

View File

@@ -94,7 +94,7 @@ struct working_area
{
uint32_t address;
uint32_t size;
int free;
bool free;
uint8_t *backup;
struct working_area **user;
struct working_area *next;