diff options
author | Kazu Hirata <kazu@codesourcery.com> | 2002-05-25 20:39:25 +0000 |
---|---|---|
committer | Kazu Hirata <kazu@codesourcery.com> | 2002-05-25 20:39:25 +0000 |
commit | 658957dba80424f79b0efb3860e3e4e1d7798fc8 (patch) | |
tree | be46843d42c2cda307c5d366af3483e07f9d1316 /ld/pe-dll.c | |
parent | 0d6d936fc1d695f3267c20a24a7e327f3c672c09 (diff) | |
download | gdb-658957dba80424f79b0efb3860e3e4e1d7798fc8.zip gdb-658957dba80424f79b0efb3860e3e4e1d7798fc8.tar.gz gdb-658957dba80424f79b0efb3860e3e4e1d7798fc8.tar.bz2 |
* ldemul.c: Fix formatting.
* ldfile.c: Likewise.
* pe-dll.c: Likewise.
* pe-dll.h: Likewise.
Diffstat (limited to 'ld/pe-dll.c')
-rw-r--r-- | ld/pe-dll.c | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/ld/pe-dll.c b/ld/pe-dll.c index 62c452c..fd70c78 100644 --- a/ld/pe-dll.c +++ b/ld/pe-dll.c @@ -233,7 +233,7 @@ static autofilter_entry_type autofilter_liblist[] = { "libmingw32.", 11 }, { "libg2c.", 7 }, { "libsupc++.", 10 }, - { "libobjc.", 8 }, + { "libobjc.", 8 }, { NULL, 0 } }; @@ -373,7 +373,7 @@ typedef struct exclude_list_struct { char *string; struct exclude_list_struct *next; - int type; + int type; } exclude_list_struct; @@ -382,7 +382,7 @@ static struct exclude_list_struct *excludes = 0; void pe_dll_add_excludes (new_excludes, type) const char *new_excludes; - const int type; + const int type; { char *local_copy; char *exclude_string; @@ -442,7 +442,7 @@ auto_export (abfd, d, n) /* First of all, make context checks: Don't export anything from standard libs. */ - if (libname) + if (libname) { afptr = autofilter_liblist; @@ -516,7 +516,7 @@ auto_export (abfd, d, n) return 0; } else if (strcmp (n, ex->string) == 0) - return 0; + return 0; } return 1; |