Commit 394d1374 authored by Stefan Reinauer's avatar Stefan Reinauer
Browse files

Compilation fix for gcc 4.0.2 (SUSE10)

Corresponding to flashrom svn r50 and coreboot v2 svn r2220.
parent 8cf74b4c
......@@ -60,12 +60,12 @@ int write_49lf040(struct flashchip *flash, uint8_t *buf)
erase_sector_jedec(bios, i * page_size);
/* write to the sector */
if(i&0xfff==0xfff)
if((i&0xfff)==0xfff)
printf("%04d at address: 0x%08x ", i, i * page_size);
write_sector_jedec(bios, buf + i * page_size,
bios + i * page_size, page_size);
if(i&0xfff==0xfff)
if((i&0xfff)==0xfff)
printf("\b\b\b\b\b\b\b\b\b\b\b\b\b\b\b\b\b\b\b\b\b\b\b\b\b\b\b\b");
fflush(stdout);
}
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment