Skip to content
Snippets Groups Projects
Commit 9c62cc58 authored by Wolfgang Denk's avatar Wolfgang Denk
Browse files

Fix problem with usage of "true" (undefined in current versions of bfd.h)

parent 7aa78614
No related branches found
No related tags found
No related merge requests found
......@@ -2,6 +2,8 @@
Changes since U-Boot 0.3.1:
======================================================================
* Fix problem with usage of "true" (undefined in current versions of bfd.h)
* Add support for Promess ATC board
* Patch by Keith Outwater, 28 Apr 2003:
......
......@@ -81,7 +81,7 @@ main(int ac, char **av)
close(ifd);
Error("bfd_fdopenr of file '%s' failed", ifn);
}
bfdp->cacheable = true;
bfdp->cacheable = 1;
if (!bfd_check_format(bfdp, bfd_object) ||
(bfd_get_file_flags(bfdp) & EXEC_P) == 0) {
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment