aboutsummaryrefslogtreecommitdiff
path: root/ld/ldmain.c
diff options
context:
space:
mode:
authorKazu Hirata <kazu@codesourcery.com>2002-05-03 13:48:55 +0000
committerKazu Hirata <kazu@codesourcery.com>2002-05-03 13:48:55 +0000
commitb7a26f91f425d537f77f38cd5dac97dda0fd9127 (patch)
treed603688e13e154c4d12b4b1b04bd45e4f6683e54 /ld/ldmain.c
parent0e04a5142ad3bd8a85c27e002bff46387af71a59 (diff)
downloadfsf-binutils-gdb-b7a26f91f425d537f77f38cd5dac97dda0fd9127.zip
fsf-binutils-gdb-b7a26f91f425d537f77f38cd5dac97dda0fd9127.tar.gz
fsf-binutils-gdb-b7a26f91f425d537f77f38cd5dac97dda0fd9127.tar.bz2
* ld.h: Fix formatting.
* ldexp.c: Likewise. * ldfile.c: Likewise. * ldlang.c: Likewise. * ldmain.c: Likewise. * lexsup.c: Likewise. * pe-dll.c: Likewise.
Diffstat (limited to 'ld/ldmain.c')
-rw-r--r--ld/ldmain.c10
1 files changed, 5 insertions, 5 deletions
diff --git a/ld/ldmain.c b/ld/ldmain.c
index 221f9d1..a603649 100644
--- a/ld/ldmain.c
+++ b/ld/ldmain.c
@@ -318,12 +318,12 @@ main (argc, argv)
if (saved_script_handle == NULL)
{
int isfile;
- char *s = ldemul_get_script (& isfile);
+ char *s = ldemul_get_script (&isfile);
if (isfile)
ldfile_open_command_file (s);
else
- {
+ {
lex_string = s;
lex_redirect (s);
}
@@ -349,7 +349,7 @@ main (argc, argv)
rewind (saved_script_handle);
while ((n = fread (buf, 1, ld_bufsz - 1, saved_script_handle)) > 0)
{
- buf [n] = 0;
+ buf[n] = 0;
info_msg (buf);
}
rewind (saved_script_handle);
@@ -359,9 +359,9 @@ main (argc, argv)
{
int isfile;
- info_msg (ldemul_get_script (& isfile));
+ info_msg (ldemul_get_script (&isfile));
}
-
+
info_msg ("\n==================================================\n");
}