Add -Werror to help us keep the code clean.
Change sizes from unsigned int to int. Clean up some usage and parameter checking. Signed-off-by: Myles Watson <mylesgw@gmail.com> Acked-by: Ronald G. Minnich <rminnich@gmail.com> git-svn-id: svn://svn.coreboot.org/coreboot/trunk@4262 2b7e53f0-3cfb-0310-b3e9-8179ed1497e1
This commit is contained in:
@ -28,7 +28,7 @@ static int extract_blob(struct rom *rom, const char *filename, const char *name)
|
||||
{
|
||||
void *buf;
|
||||
int fd, ret;
|
||||
unsigned long size;
|
||||
int size;
|
||||
|
||||
ret = rom_extract(rom, name, &buf, &size);
|
||||
|
||||
@ -43,7 +43,7 @@ static int extract_blob(struct rom *rom, const char *filename, const char *name)
|
||||
}
|
||||
|
||||
if (write(fd, buf, size) != size) {
|
||||
ERROR("Couldn't write %ld bytes!\n", size);
|
||||
ERROR("Couldn't write %d bytes!\n", size);
|
||||
ret = -1;
|
||||
}
|
||||
|
||||
|
Reference in New Issue
Block a user