diff options
author | Pixel <> | 2001-04-17 04:03:02 +0000 |
---|---|---|
committer | Pixel <> | 2001-04-17 04:03:02 +0000 |
commit | 55f981c9fca048fba18d0538be4ed5dc1cc3fe11 (patch) | |
tree | 830ee90912ac88515a6b6bc68be033ca79b5dccf /lib/linker.c | |
parent | a19da7ded119713b955816f1de69d71eef191ab0 (diff) |
Indent large
Diffstat (limited to 'lib/linker.c')
-rw-r--r-- | lib/linker.c | 12 |
1 files changed, 4 insertions, 8 deletions
diff --git a/lib/linker.c b/lib/linker.c index 8582142..e748a2a 100644 --- a/lib/linker.c +++ b/lib/linker.c @@ -236,8 +236,7 @@ static void dumprelog(FILE * f) break; } #ifdef DEBUG - fprintf(stderr, "Relogement effectué sur %i (text), de %i octets pour le symbole %s\n", - s->offset, decal, s->name); + fprintf(stderr, "Relogement effectué sur %i (text), de %i octets pour le symbole %s\n", s->offset, decal, s->name); #endif objects[s->objindex]->text[s->offset] += decal; writeword(objects[s->objindex]->textstart + s->offset, f); @@ -258,8 +257,7 @@ static void dumprelog(FILE * f) break; } #ifdef DEBUG - fprintf(stderr, "Relogement effectué sur %i (data), de %i octets pour le symbole %s\n", - s->offset, decal, s->name); + fprintf(stderr, "Relogement effectué sur %i (data), de %i octets pour le symbole %s\n", s->offset, decal, s->name); #endif objects[s->objindex]->data[s->offset] += decal; writeword(textsize + objects[s->objindex]->datastart + s->offset, f); @@ -310,8 +308,7 @@ void dumpfile(char *nom) popcontext(); popcontext(); - fprintf(stderr, _("Statistics: %i words of text, %i words of data and reserving %i words\n"), textsize, - datasize, bsssize); + fprintf(stderr, _("Statistics: %i words of text, %i words of data and reserving %i words\n"), textsize, datasize, bsssize); fprintf(stderr, _("Output file size: %i words containing %i relocating offsets.\n"), ftell(f), nbrsymbs); fclose(f); } @@ -329,8 +326,7 @@ void init(int n) for (i = 0; i < n; i++) { objects[i] = (object_t *) Emalloc(sizeof(object_t)); - objects[i]->s_text = objects[i]->s_data = objects[i]->s_bss = objects[i]->textstart = - objects[i]->datastart = 0; + objects[i]->s_text = objects[i]->s_data = objects[i]->s_bss = objects[i]->textstart = objects[i]->datastart = 0; objects[i]->text = objects[i]->data = NULL; } |