summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--ld/ChangeLog5
-rw-r--r--ld/ldgram.y2
-rw-r--r--ld/ldmain.c2
3 files changed, 7 insertions, 2 deletions
diff --git a/ld/ChangeLog b/ld/ChangeLog
index 01c0a859da..b8a5cac67c 100644
--- a/ld/ChangeLog
+++ b/ld/ChangeLog
@@ -1,3 +1,8 @@
+2001-08-15 Tom Rix <trix@redhat.com>
+
+ * ldgram.y (saved_script_handle): Initialize to NULL.
+ * ldmain.c (main): Change check on saved_script_handle.
+
2001-08-14 Alan Modra <amodra@bigpond.net.au>
* emultempl/elf32.em: Formatting fixes.
diff --git a/ld/ldgram.y b/ld/ldgram.y
index f9c6058fea..a823bab768 100644
--- a/ld/ldgram.y
+++ b/ld/ldgram.y
@@ -50,7 +50,7 @@ static enum section_type sectype;
lang_memory_region_type *region;
boolean ldgram_want_filename = true;
-FILE * saved_script_handle = false;
+FILE * saved_script_handle = NULL;
boolean force_make_executable = false;
boolean ldgram_in_script = false;
diff --git a/ld/ldmain.c b/ld/ldmain.c
index 849e0ae2ef..0ec7891891 100644
--- a/ld/ldmain.c
+++ b/ld/ldmain.c
@@ -298,7 +298,7 @@ main (argc, argv)
/* If we have not already opened and parsed a linker script
read the emulation's appropriate default script. */
- if (saved_script_handle == false)
+ if (saved_script_handle == NULL)
{
int isfile;
char *s = ldemul_get_script (& isfile);