diff options
author | wdenk <wdenk> | 2003-05-03 23:33:47 +0000 |
---|---|---|
committer | wdenk <wdenk> | 2003-05-03 23:33:47 +0000 |
commit | 9c62cc58b8e228e8296630e47b95c15c4a3753a0 (patch) | |
tree | 03f27cf85080ac49d07e7625005ae86e852cc780 /tools | |
parent | 7aa78614716b7bd7bdf68553f261ad0d5a12826a (diff) |
Fix problem with usage of "true" (undefined in current versions of bfd.h)
Diffstat (limited to 'tools')
-rw-r--r-- | tools/gdb/astest.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/gdb/astest.c b/tools/gdb/astest.c index 8c8ed2819a9..dbe55fe5b1f 100644 --- a/tools/gdb/astest.c +++ b/tools/gdb/astest.c @@ -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) { |