Commit 9c62cc58b8e228e8296630e47b95c15c4a3753a0

Authored by wdenk
1 parent 7aa7861471

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

Showing 2 changed files with 3 additions and 1 deletions Side-by-side Diff

... ... @@ -2,6 +2,8 @@
2 2 Changes since U-Boot 0.3.1:
3 3 ======================================================================
4 4  
  5 +* Fix problem with usage of "true" (undefined in current versions of bfd.h)
  6 +
5 7 * Add support for Promess ATC board
6 8  
7 9 * Patch by Keith Outwater, 28 Apr 2003:
... ... @@ -81,7 +81,7 @@
81 81 close(ifd);
82 82 Error("bfd_fdopenr of file '%s' failed", ifn);
83 83 }
84   - bfdp->cacheable = true;
  84 + bfdp->cacheable = 1;
85 85  
86 86 if (!bfd_check_format(bfdp, bfd_object) ||
87 87 (bfd_get_file_flags(bfdp) & EXEC_P) == 0) {