From: DJ Delorie Date: Tue, 17 Apr 2001 23:28:38 +0000 (+0000) Subject: * dlltool.c (do_default_excludes): Initialise to true. X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=4bd3d87018ec6771548d16429a13bef71c15b1dd;p=binutils-gdb.git * dlltool.c (do_default_excludes): Initialise to true. --- diff --git a/binutils/ChangeLog b/binutils/ChangeLog index 4073d0b08a8..3a000b95eb0 100644 --- a/binutils/ChangeLog +++ b/binutils/ChangeLog @@ -1,3 +1,7 @@ +2001-04-17 Danny Smith + + * dlltool.c (do_default_excludes): Initialise to true. + 2001-04-10 Alan Modra * MAINTAINERS: Update my email address diff --git a/binutils/dlltool.c b/binutils/dlltool.c index a92688c14f1..4295e0add1b 100644 --- a/binutils/dlltool.c +++ b/binutils/dlltool.c @@ -367,7 +367,7 @@ static boolean export_all_symbols; /* True if we should exclude the symbols in DEFAULT_EXCLUDES when exporting all symbols. */ -static boolean do_default_excludes; +static boolean do_default_excludes=true; /* Default symbols to exclude when exporting all the symbols. */ static const char *default_excludes = "DllMain@12,DllEntryPoint@0,impure_ptr";